source: tests/src/test-lvec.c @ 175a218

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

src/lvec.c: add missing lvec_set_sample, improve test

  • Property mode set to 100644
File size: 359 bytes
RevLine 
[cd60b5c]1#include <aubio.h>
[175a218]2#include "utils_tests.h"
[cd60b5c]3
[7e35b37]4int main()
5{
[175a218]6  uint_t win_s = 32; // window size
[7e35b37]7  lvec_t * sp = new_lvec (win_s); // input buffer
[175a218]8  lvec_set_sample (sp, 2./3., 0);
9  PRINT_MSG("%lf\n", lvec_get_sample (sp, 0));
10  lvec_print (sp);
11  lvec_ones (sp);
12  lvec_print (sp);
13  lvec_set_all (sp, 3./5.);
14  lvec_print (sp);
[7e35b37]15  del_lvec(sp);
16  return 0;
[cd60b5c]17}
18
Note: See TracBrowser for help on using the repository browser.