You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
367 B
14 lines
367 B
|
|
/**
|
|
* Compute and stores hanning window coefficients in the given array
|
|
*
|
|
* @param array where coeffs are stored (must be window_width long)
|
|
* @param window_width the number of coef to compute
|
|
*/
|
|
void hanning(float * array, int window_width);
|
|
|
|
/**
|
|
* Print coeffs from 2 hanning windows, the first with 8 coeffs, the second
|
|
* with 19
|
|
*/
|
|
void test_hanning();
|
|
|