fvec_min method

double fvec_min(
  1. Pointer<fvec_t> s
)

find the min of a vector

\param s vector to get the min from

\return the value of the maximum of v

Implementation

double fvec_min(
  ffi.Pointer<fvec_t> s,
) {
  return _fvec_min(
    s,
  );
}