source: tests/src/test-fmat.c @ db86a46

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

tests/src: clean up includes

  • Property mode set to 100644
File size: 749 bytes
Line 
1#include "aubio.h"
2#include "utils_tests.h"
3
4// create a new matrix and fill it with i * 1. + j * .1, where i is the row,
5// and j the column.
6
7int main (void)
8{
9  uint_t height = 3, length = 9, i, j;
10  // create fmat_t object
11  fmat_t * mat = new_fmat (height, length);
12  for ( i = 0; i < mat->height; i++ ) {
13    for ( j = 0; j < mat->length; j++ ) {
14      // all elements are already initialized to 0.
15      assert(mat->data[i][j] == 0);
16      // setting element of row i, column j
17      mat->data[i][j] = i * 1. + j *.1;
18    }
19  }
20  fvec_t channel_onstack;
21  fvec_t *channel = &channel_onstack;
22  fmat_get_channel(mat, 1, channel);
23  fvec_print (channel);
24  // print out matrix
25  fmat_print(mat);
26  // destroy it
27  del_fmat(mat);
28  return 0;
29}
30
Note: See TracBrowser for help on using the repository browser.