218c027e76a8e5aae4ea469d8f0bbb47df00f18e
[aubio.git] / tests / src / test-fmat.c
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
7 int 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