new_fmat method

Pointer<fmat_t> new_fmat(
  1. int height,
  2. int length
)

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,
  );
}