clMatrix::DivideBy Method

Overload List

#SignatureDescription
1TOpenCLMtxVec *DivideBy(double Value) const;Divide Value with elements of the calling object and store the result in the calling object.
2TOpenCLMtxVec *DivideBy(TCplx Value) const;Divide complex Value with elements of the calling object.
3TOpenCLMtxVec *DivideBy(double Value, int Index, int Len) const;Divide Value with elements [Index]...[Index+Len-1] from the calling object.
4TOpenCLMtxVec *DivideBy(TCplx Value, int Index, int Len) const;Divide complex Value with elements [Index]...[Index+Len-1] from the calling object.
5TOpenCLMtxVec *DivideBy(double Value, TOpenCLMtxVec *Vec) const;Divide Value with elements from Vec and store the result in the corresponding elements of the calling object.
6TOpenCLMtxVec *DivideBy(TCplx Value, TOpenCLMtxVec *Vec) const;Divide complex Value with elements from Vec and store the result in the corresponding elements of the calling object.
7TOpenCLMtxVec *DivideBy(double Value, TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len) const;Divide Value with Vec elements [VecIndex]..[VecIndes+Len-1].
8TOpenCLMtxVec *DivideBy(TCplx Value, TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len) const;Divide complex Value with elements [VecIndex]..[VecIndes+Len-1] from Vec.

Overload 1: TOpenCLMtxVec *DivideBy(double Value) const;

Divide Value with elements of the calling object and store the result in the calling object.

#NameTypeDescription
1Valuedouble
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 2: TOpenCLMtxVec *DivideBy(TCplx Value) const;

Divide complex Value with elements of the calling object.

#NameTypeDescription
1ValueTCplx
Remarks:

Store the result in the calling object.

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

Overload 3: TOpenCLMtxVec *DivideBy(double Value, int Index, int Len) const;

Divide Value with elements [Index]...[Index+Len-1] from the calling object.

#NameTypeDescription
1Valuedouble
2Indexint
3Lenint
Remarks:

Store the result in the calling object at position [Index]...[Index+Len-1]. An exception will be raised if array borders are overrun or underrun.

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

Overload 4: TOpenCLMtxVec *DivideBy(TCplx Value, int Index, int Len) const;

Divide complex Value with elements [Index]...[Index+Len-1] from the calling object.

#NameTypeDescription
1ValueTCplx
2Indexint
3Lenint
Remarks:

Store the result in the calling object at position [Index]...[Index+Len-1]. Calling vector will be extended to complex, if the calling vector is real. An exception will be raised if array borders are overrun or underrun.

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

Overload 5: TOpenCLMtxVec *DivideBy(double Value, TOpenCLMtxVec *Vec) const;

Divide Value with elements from Vec and store the result in the corresponding elements of the calling object.

#NameTypeDescription
1Valuedouble
2VecTOpenCLMtxVec *
Remarks:

Size and clMatrix::Complex properties of the calling object are set automatically.

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

Overload 6: TOpenCLMtxVec *DivideBy(TCplx Value, TOpenCLMtxVec *Vec) const;

Divide complex Value with elements from Vec and store the result in the corresponding elements of the calling object.

#NameTypeDescription
1ValueTCplx
2VecTOpenCLMtxVec *
Remarks:

Size of the calling object is set automatically. clMatrix::Complex property of the calling object is set to True.

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

Overload 7: TOpenCLMtxVec *DivideBy(double Value, TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len) const;

Divide Value with Vec elements [VecIndex]..[VecIndes+Len-1].

#NameTypeDescription
1Valuedouble
2VecTOpenCLMtxVec *
3VecIndexint
4Indexint
5Lenint
Remarks:

Store the result in the elements [Index]..[Index+Len-1] of the calling object. Size of the calling object is not changed. An exception will be raised array borders are overrun or underrun. clMatrix::Complex property of the calling object is set implicitly.

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

Overload 8: TOpenCLMtxVec *DivideBy(TCplx Value, TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len) const;

Divide complex Value with elements [VecIndex]..[VecIndes+Len-1] from Vec.

#NameTypeDescription
1ValueTCplx
2VecTOpenCLMtxVec *
3VecIndexint
4Indexint
5Lenint
Remarks:

Store the result in the elements [Index]..[Index+Len-1] of the calling object. Size of the calling object is not changed. An exception will be raised array borders are overrun or underrun. clMatrix::Complex property of the calling object is set to True.

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