clMatrix::Min Method

Overload List

#SignatureDescription
1double Min() const;Minimum value.
2double Min(int Index, int Len) const;Calculate the minimum value from calling object elements [Index]..[Index+Len-1].
3void Min(double &AMin, int Index, int Len) const;Calculate the minimum value from calling object elements [Index]..[Index+Len-1].
4void Min(double &AMin, int &AIndex, int Index, int Len) const;Calculate the minimum value of calling object elements [Index]..[Index+Len-1].
5void Min(double &AMin, int &AIndex) const;Calculate the minimum value of all calling object elements.
6int Min(TCplx &AMin, int Index, int Len) const;Same as the clMatrix::Minc method.

Overload 1: double Min() const;

Minimum value.

Returns: The minimum value of all calling object elements. The result is a real value.

Remarks:

An exception is raised if calling object clMatrix::Complex property is true.

See Also: clMatrix::Max, clMatrix::Minc
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 2: double Min(int Index, int Len) const;

Calculate the minimum value from calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1Indexint
2Lenint
Remarks:

The result is a real value. An exception is raised if calling object clMatrix::Complex property is true or array borders are overrun.

Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 3: void Min(double &AMin, int Index, int Len) const;

Calculate the minimum value from calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1AMindouble &
2Indexint
3Lenint
Remarks:

The result AMin is a real value. An exception is raised if calling object clMatrix::Complex property is true or array borders are overrun.

Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 4: void Min(double &AMin, int &AIndex, int Index, int Len) const;

Calculate the minimum value of calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1AMindouble &
2AIndexint &
3Indexint
4Lenint
Remarks:

The AMax parameter returns the minimum value. The AIndex parameter returns the index of minimum value. An exception is raised if calling object clMatrix::Complex property is true or array borders are overrud/underrun.

Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 5: void Min(double &AMin, int &AIndex) const;

Calculate the minimum value of all calling object elements.

#NameTypeDescription
1AMindouble &
2AIndexint &
Remarks:

The AMin parameter returns the minimum value. The AIndex parameter returns the index of minimum value. An exception is raised if calling object clMatrix::Complex property is true.

Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 6: int Min(TCplx &AMin, int Index, int Len) const;

Same as the clMatrix::Minc method.

#NameTypeDescription
1AMinTCplx &
2Indexint
3Lenint
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler