TOpenCLVector::Sum Method

Overload List

#SignatureDescription
1double Sum();Sums vector values.
2double Sum(int Index, int Len);Returns the sum of calling object elements [Index]..[Index+Len-1].
3void Sum(double &ASum, int Index, int Len);Calculates the sum of calling object elements [Index]..[Index+Len-1].
4void Sum(TCplx &ASum);Calculates the sum of all calling object complex elements.
5void Sum(TCplx &ASum, int Index, int Len);Calculates the sum of calling object complex elements [Index]..[Index+Len-1].

Overload 1: double Sum();

Sums vector values.

Returns: the sum of all calling object elements. An exception is raised if calling object TOpenCLBase::Complex property is true.

See Also: TOpenCLVector::Sumc
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler

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

Returns the sum of calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1Indexint
2Lenint
Remarks:

An exception is raised if calling object TOpenCLBase::Complex property is True or array borders are overrun/underrun.

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

Overload 3: void Sum(double &ASum, int Index, int Len);

Calculates the sum of calling object elements [Index]..[Index+Len-1].

#NameTypeDescription
1ASumdouble &
2Indexint
3Lenint
Remarks:

Stores the result in real ASum variable. An exception is raised if calling object TOpenCLBase::Complex property is True or array borders are overrun/underrun.

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

Overload 4: void Sum(TCplx &ASum);

Calculates the sum of all calling object complex elements.

#NameTypeDescription
1ASumTCplx &
Remarks:

Stores the result in complex ASum variable. An exception is raised if calling object TOpenCLBase::Complex property is False.

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

Overload 5: void Sum(TCplx &ASum, int Index, int Len);

Calculates the sum of calling object complex elements [Index]..[Index+Len-1].

#NameTypeDescription
1ASumTCplx &
2Indexint
3Lenint
Remarks:

Stores the result in complex ASum variable. An exception is raised if calling object TOpenCLBase::Complex property is False or array borders are overrun/underrun.

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