new_fmat method
fmat_t buffer creation function
\param length the length of the matrix to create \param height the height of the matrix to create
Implementation
ffi.Pointer<fmat_t> new_fmat(
int height,
int length,
) {
return _new_fmat(
height,
length,
);
}