24template<
typename U=Scalar,
int R=RowsAtCompileTime,
int C=ColsAtCompileTime>
25 requires (!IsIntervalDomain<U>) && (IsVectorOrRow<R,C>)
29 this->minCoeff(&r,&c);
30 assert((C == 1 && c == 0) || (R == 1 && r == 0));
42template<
typename U=Scalar,
int R=RowsAtCompileTime,
int C=ColsAtCompileTime>
43 requires (!IsIntervalDomain<U>) && (IsVectorOrRow<R,C>)
47 this->maxCoeff(&r,&c);
48 assert((C == 1 && c == 0) || (R == 1 && r == 0));
Index max_coeff_index() const
Returns the index of the maximum coefficient in the vector.
Definition codac2_MatrixBase_addons_Vector.h:44
Index min_coeff_index() const
Returns the index of the minimum coefficient in the vector.
Definition codac2_MatrixBase_addons_Vector.h:26