Displaying 1 result from an estimated 1 matches for "radixp".
Did you mean:
radix
2001 Feb 01
1
minor psy.c modifications
...if(bin>LASTBIN)
bin=LASTBIN;
if(bin<0)
bin=0;
if(bin<median)
countabove--;
else
countbelow--;
radix[bin]--;
}
}
// move the median if needed
if(countabove+countbelow){
const float threshicc=(float)(countabove+countbelow)*thresh[i];
long *radixp=&radix[median],cora;
while((median>0) && (threshicc>(float)countbelow)){
median--;
radixp--;
countabove - =*radixp;
countbelow + =*radixp;
}
while((median<LASTBIN)
&& (threshicc<(float)(cora=countbelow-*radixp))){
countbelow =cor...