source: tests/src/test-hist.c @ 407bba9

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 407bba9 was 407bba9, checked in by Paul Brossier <piem@piem.org>, 15 years ago

src/mathutils.c: use a string for window type, making enum private

  • Property mode set to 100644
File size: 639 bytes
RevLine 
[4e9101e]1#include <aubio.h>
2#include <stdlib.h>
3
[0d434df5]4int main( )
[4e9101e]5{
6  uint_t length;
7  for (length = 1; length < 10; length ++ ) {
8    aubio_hist_t *o = new_aubio_hist(0, 1, length, 5);
[407bba9]9    fvec_t *t = new_aubio_window("hanning", length);
[51ee670]10    aubio_hist_do(o,t);
11    fvec_print(t);
12    aubio_hist_do_notnull(o,t);
13    fvec_print(t);
14    aubio_hist_dyn_notnull(o,t);
15    fvec_print(t);
16    del_fvec(t);
[407bba9]17    t = new_aubio_window("hanningz", length);
[4e9101e]18    aubio_hist_do(o,t);
[51ee670]19    fvec_print(t);
[4e9101e]20    aubio_hist_do_notnull(o,t);
[51ee670]21    fvec_print(t);
[4e9101e]22    aubio_hist_dyn_notnull(o,t);
[51ee670]23    fvec_print(t);
[4e9101e]24    del_aubio_hist(o);
25    del_fvec(t);
26  }
27  return 0;
28}
29
Note: See TracBrowser for help on using the repository browser.