search for: min_rang

Displaying 2 results from an estimated 2 matches for "min_rang".

Did you mean: min_range
2009 Nov 19
1
ddply function nesting problems
...ng: function_nesting() Unfortunately this produced errors within the ddply where it does not appear to be recognizing or allowing variables or functions to be processed within side its function.? Thank you for any advice about how to proceed forward. determine_counts<-function() { ??????? min_range<-1 ??????? max_range<-30 ??????? bin_range_size<-5 ??????? Me_df<-data.frame(Data = c(1:15), Person = "Me") ??????? You_df<-data.frame(Data = c(10:20), Person = "You") ??????? Them_df<-data.frame(Data = c(15:25), Person = "Them") ??????? Group_df_tmp...
2007 Sep 17
1
Possible fixed point overflow/div 0 preprocess.c
...y checked in a couple of places and mostly for initial conditions such as within update_noise_prob below: <preprocess.c update_noise_prob> ... if (st->nb_adapt==1) { for (i=0;i<N;i++) st->Smin[i] = st->Stmp[i] = 0; } if (st->nb_adapt < 100) min_range = 15; else if (st->nb_adapt < 1000) min_range = 50; else if (st->nb_adapt < 10000) min_range = 150; else min_range = 300; ... </> Maybe something like this is required within speex_preprocess_run to prevent the observed overflow. <preprocess.c spee...