Displaying 3 results from an estimated 3 matches for "doset".
Did you mean:
dose
2008 May 21
1
problems with data frames, factors and lists
...ngth(hc$labels), twogrp = twoisone)
return(out)
}
example result:
> mix(tsus_same, 77)
$pid
[1] 77
$one
[1] 9
$two
[1] 2
$diff
[1] 8.577195
$noseqs
[1] 11
$twogrp
[1] "more"
>
I then use this function in another function that just runs this
function through a lot of data:
doset <- function(sameset) {
pids = unique(c(sameset$APID, sameset$BPID))
for (f in pids) {
oputframe = data.frame(rbind(oputframe, mix(sameset, f)))
}
return(oputframe)
}
All values except $twogrp are numbers. There are two possible values
for $twogrp, "one" and "more". the f...
2014 Jul 08
1
[PATCH] nv50/ir: use unordered_set instead of list to keep our instructions in uses
...= refVal)
return;
if (value)
- value->uses.remove(this);
+ value->uses.erase(this);
if (refVal)
- refVal->uses.push_back(this);
+ refVal->uses.insert(this);
value = refVal;
}
@@ -206,7 +206,7 @@ ValueDef::replace(const ValueRef &repVal, bool doSet)
return;
while (!value->uses.empty()) {
- ValueRef *ref = value->uses.front();
+ ValueRef *ref = *value->uses.begin();
ref->set(repVal.get());
ref->mod *= repVal.mod;
}
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir.h b/src/gallium/d...
2006 Dec 15
1
fxotune unable to set impedence
My SM56 (Motorola X100P clone) has echo as hight as 38%, according to
fxotune -d. But when trying to take action, it fxotune simply says it
can't.
./fxotune -i3 -vvvv
Running with parameters:
doset=0
docalibrate=1
dodump=0
startdev=1
stopdev=252
calibtype=2
waveformtype=-1
delaytosilence=0
silencegoodfor=18
dialstr=5
debug=4
Tuning module /dev/zap/1
Unable to set impedance on fd 4
Failure!
------------------
How...