fmat_ones method

void fmat_ones(
  1. Pointer<fmat_t> s
)

set all elements to ones

\param s vector to modify

Implementation

void fmat_ones(
  ffi.Pointer<fmat_t> s,
) {
  return _fmat_ones(
    s,
  );
}