fvec_min_elem method

int fvec_min_elem(
  1. Pointer<fvec_t> s
)

find the index of the min of a vector

\param s vector to get the index from

\return the index of the minimum element of v

Implementation

int fvec_min_elem(
  ffi.Pointer<fvec_t> s,
) {
  return _fvec_min_elem(
    s,
  );
}