clMatrix::MulI Method

Overload List

#SignatureDescription
1TOpenCLMtxVec *MulI() const;Multiply elements by imaginary unit I.
2TOpenCLMtxVec *MulI(int Index, int Len) const;Multipy calling object elements [Index]..[Index+Len-1] with I in-place.
3TOpenCLMtxVec *MulI(TOpenCLMtxVec *X) const;Multiply X elements with I and store the result in the calling object.
4TOpenCLMtxVec *MulI(TOpenCLMtxVec *X, int XIndex, int Index, int Len) const;Multipy X elements [XIndex]..[XIndex+Len-1] with I.

Overload 1: TOpenCLMtxVec *MulI() const;

Multiply elements by imaginary unit I.

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

Overload 2: TOpenCLMtxVec *MulI(int Index, int Len) const;

Multipy calling object elements [Index]..[Index+Len-1] with I in-place.

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

Overload 3: TOpenCLMtxVec *MulI(TOpenCLMtxVec *X) const;

Multiply X elements with I and store the result in the calling object.

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

Overload 4: TOpenCLMtxVec *MulI(TOpenCLMtxVec *X, int XIndex, int Index, int Len) const;

Multipy X elements [XIndex]..[XIndex+Len-1] with I.

#NameTypeDescription
1XTOpenCLMtxVec *
2XIndexint
3Indexint
4Lenint
Remarks:

Xtore the result in the calling object at locations [Index]..[Index+Len-1].

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