Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx MulI(const TCplx &X); | Multiplies complex number with I. |
| 2 | TSCplx MulI(const TSCplx &X); | |
| 3 | void MulI(const TCplx &X, TCplx &result); | Multiplies complex number with I. |
| 4 | void MulI(const TSCplx &X, TSCplx &result); |
Overload 1: TCplx MulI(const TCplx &X);
Multiplies complex number with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TCplx & |
Returns: original value, multiplied with i: (x+I*y) becomes: -y+I*x
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TSCplx MulI(const TSCplx &X);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TSCplx & |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 3: void MulI(const TCplx &X, TCplx &result);
Multiplies complex number with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TCplx & | Defines the input parameter for multiplying with I. |
| 2 | result | TCplx & | Stores the result of multiplying with I. |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler