TOpenCLVector::Max Method

Overload List

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

Overload 1: double Max();

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 TOpenCLBase::Complex is true.

See Also: TOpenCLVector::Min, TOpenCLVector::Maxc, TOpenCLVector::MaxMin
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

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

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 TOpenCLBase::Complex property is true or array borders are overrun.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 3: void Max(double &AMax, int Index, int Len);

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 TOpenCLBase::Complex property is true or array borders are overrun.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 4: void Max(double &AMax, int &aIndex);

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 TOpenCLBase::Complex property is true.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 5: void Max(double &AMax, int &aIndex, int Index, int Len);

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 TOpenCLBase::Complex property is true or array borders are overrud/underrun.

Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

Overload 6: int Max(TCplx &AMax, int Index, int Len);

Same as TOpenCLVector::Maxc method.

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