ref: 01b8fcc1b4d797f0f001d3a4372d1e7f3c1c5b2d
dir: /tests/src/test-hist.c/
#include <aubio.h>
#include <stdlib.h>
int main( int argc, char** argv )
{
uint_t length;
for (length = 1; length < 10; length ++ ) {
aubio_hist_t *o = new_aubio_hist(0, 1, length, 5);
fvec_t *t = new_aubio_window(length,aubio_win_hanning);
aubio_hist_do(o,t);
fvec_print(t);
aubio_hist_do_notnull(o,t);
fvec_print(t);
aubio_hist_dyn_notnull(o,t);
fvec_print(t);
del_fvec(t);
t = new_aubio_window(length,aubio_win_hanningz);
aubio_hist_do(o,t);
fvec_print(t);
aubio_hist_do_notnull(o,t);
fvec_print(t);
aubio_hist_dyn_notnull(o,t);
fvec_print(t);
del_aubio_hist(o);
del_fvec(t);
}
return 0;
}