ref: 0e5326d937b47820aaf9c8a44d9026acf85d47b3
dir: /tests/src/test-fmat.c/
#include <aubio.h>
int main(){
uint_t length = 1024; /* length */
uint_t height = 1024; /* height */
fmat_t * mat = new_fmat (length, height); /* input buffer */
fmat_print(mat);
del_fmat(mat);
return 0;
}