shithub: aubio

ref: db8000e44f4ab4e150738d91f3d02f5bf7c1e4ec
dir: /tests/src/test-fmat.c/

View raw version
#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;
}