cvec_norm_set_all method

void cvec_norm_set_all(
  1. Pointer<cvec_t> s,
  2. double val
)

set all norm elements to a given value

\param s vector to modify \param val value to set elements to

Implementation

void cvec_norm_set_all(
  ffi.Pointer<cvec_t> s,
  double val,
) {
  return _cvec_norm_set_all(
    s,
    val,
  );
}