fvec_max method

double fvec_max(
  1. Pointer<fvec_t> s
)

find the max of a vector

\param s vector to get the max from

\return the value of the minimum of v

Implementation

double fvec_max(
  ffi.Pointer<fvec_t> s,
) {
  return _fvec_max(
    s,
  );
}