fmat_vecmul method
compute the product of a matrix by a vector
\param s matrix to compute product with \param scale vector to compute product with \param output vector to store restults in
Implementation
void fmat_vecmul(
ffi.Pointer<fmat_t> s,
ffi.Pointer<fvec_t> scale,
ffi.Pointer<fvec_t> output,
) {
return _fmat_vecmul(
s,
scale,
output,
);
}