TOpenCLMatrix::Min Method

Overload List

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

Overload 1: double Min();

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

See Also: TOpenCLMatrix::Max, TOpenCLMatrix::Minc
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

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

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

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

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

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

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

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

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

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

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

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

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

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

Same as the TOpenCLMatrix::Minc method.

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