89daa29b38a6fa09386af47560e8a35cc6caf8a9
[aubio.git] / tests / src / test-fmat.c
1 #include <aubio.h>
2
3 int main(){
4         uint_t length = 1024;                     /* length */
5         uint_t height = 1024;                     /* height */
6         fmat_t * mat = new_fmat (length, height); /* input buffer */
7         fmat_print(mat);
8         del_fmat(mat);
9         return 0;
10 }
11