Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *MulI() const; | Multiply elements by imaginary unit I. |
| 2 | TMtxVec *MulI(int Index, int Len) const; | Multiply calling object elements [Index]..[Index+Len-1] with I in-place. |
| 3 | TMtxVec *MulI(TMtxVec *X) const; | Multiply X elements with I. |
| 4 | TMtxVec *MulI(TMtxVec *X, int XIndex, int Index, int Len) const; | Multipy X elements [XIndex]..[XIndex+Len-1] with I. |
Overload 1: TMtxVec *MulI() const;
Multiply elements by imaginary unit I.
Remarks:
Multiply calling vector elements with "I".
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtxVec *MulI(int Index, int Len) const;
Multiply calling object elements [Index]..[Index+Len-1] with I in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: TMtxVec *MulI(TMtxVec *X) const;
Multiply X elements with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec * |
Remarks:
Store the result in the calling object.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 4: TMtxVec *MulI(TMtxVec *X, int XIndex, int Index, int Len) const;
Multipy X elements [XIndex]..[XIndex+Len-1] with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec * | |
| 2 | XIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
Store the result in the calling object at locations [Index]..[Index+Len-1].
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler