Sunday, July 04, 2010

cut_off

Digital Signal Processing Library

Voice Lab

cut_off


int cut_off(double offset, int sample_rate, int window_size, int overlap)
{
int aux;

aux = offset * sample_rate * overlap / window_size;
return(aux);
}



No comments:

Post a Comment