Displaying 2 results from an estimated 2 matches for "threshi".
Did you mean:
thresh
2001 Jan 27
1
optimization to bark_noise_median()
...UNT-1)
tatic void bark_noise_median(long n,const float *b,const float *f,float *noise,
float lowidth,float hiwidth,
int lomin,int himin,
const float *thresh,const float *off){
long i=0,lo=0,hi=0;
float bi,threshi;
long median=LASTBIN;
float negFour = -4.0;
float negQuarter = -0.25;
/* these are really integral values, but we store them in floats to avoid excessive float/int conversions */
float *radix=alloca(BINCOUNT*sizeof(*radix));
float countabove=0;
float countbelow=0;
memset(radix...
2001 Feb 01
1
minor psy.c modifications
...float *f,float *noise,
float lowidth,float hiwidth,
int lomin,int himin,
float *thresh,float *off){
long i,lo=0,hi=0;
long median=LASTBIN;
float bi,threshi;
float negFour = -4.0f;
float negQuarter = -0.25f;
float radix[BINCOUNT];
float countabove=0.f;
float countbelow=0.f;
memset(radix,0,sizeof(radix));
for(i=0;i<n;i++){
// find new lo/hi
bi=b[i]+hiwidth;
for(;hi<n && (hi<i+himin || b[hi]<=bi);hi++){
int bin=B...