fmat_get_channel method

void fmat_get_channel(
  1. Pointer<fmat_t> s,
  2. int channel,
  3. Pointer<fvec_t> output
)

read channel vector from a buffer

\param s vector to read from \param channel channel to read from \param output ::fvec_t to output to

Implementation

void fmat_get_channel(
  ffi.Pointer<fmat_t> s,
  int channel,
  ffi.Pointer<fvec_t> output,
) {
  return _fmat_get_channel(
    s,
    channel,
    output,
  );
}