fvec_sin method

void fvec_sin(
  1. Pointer<fvec_t> s
)

compute \f$sin(x)\f$ of each vector elements

\param s vector to modify

Implementation

void fvec_sin(
  ffi.Pointer<fvec_t> s,
) {
  return _fvec_sin(
    s,
  );
}