clMatrix::Max Method

Overload List

#SignatureDescription
1double Max() const;Maximum value.
2double Max(int Index, int Len) const;Returns the maximum value from calling object elements [Index]..[Index+Len-1].
3void Max(double &AMax, int Index, int Len) const;Calculate the maximum value from calling object elements [Index]..[Index+Len-1].
4void Max(double &AMax, int &AIndex) const;Calculate the maximum value of all calling object elements.
5void Max(double &AMax, int &AIndex, int Index, int Len) const;Calculate the maximum value of calling object elements [Index]..[Index+Len-1].
6int Max(TCplx &AMax, int Index, int Len) const;Same as clMatrix::Maxc method.

Overload 1: double Max() const;

Maximum value.

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

Remarks:

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

See Also: clMatrix::Min, clMatrix::Maxc, clMatrix::MaxMin
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

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

Returns the maximum 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 Max(double &AMax, int Index, int Len) const;

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

#NameTypeDescription
1AMaxdouble &
2Indexint
3Lenint
Remarks:

The result AMean 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 Max(double &AMax, int &AIndex) const;

Calculate the maximum value of all calling object elements.

#NameTypeDescription
1AMaxdouble &
2AIndexint &
Remarks:

The AMax parameter returns the maximum value. The AIndex parameter returns the index of maximum 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 5: void Max(double &AMax, int &AIndex, int Index, int Len) const;

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

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

The AMax parameter returns the maximum value. The AIndex parameter returns the index of maximum 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 6: int Max(TCplx &AMax, int Index, int Len) const;

Same as clMatrix::Maxc method.

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