TSparseMtx::MulI Method

Overload List

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

Overload 1: TMtxVec *MulI();

Multiply elements by imaginary unit I.

Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

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

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

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

Overload 3: TMtxVec *MulI(TMtxVec *X);

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

#NameTypeDescription
1XTMtxVec *
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

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

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

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

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

Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler