fvec_round method

void fvec_round(
  1. Pointer<fvec_t> s
)

compute the \f$round(x)\f$ of each vector elements

\param s vector to modify

Implementation

void fvec_round(
  ffi.Pointer<fvec_t> s,
) {
  return _fvec_round(
    s,
  );
}