fmat_vecmul method

void fmat_vecmul(
  1. Pointer<fmat_t> s,
  2. Pointer<fvec_t> scale,
  3. Pointer<fvec_t> output
)

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