Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx CMulI(const TCplx &A, const double BI); | Multiply two complex numbers. |
| 2 | TSCplx CMulI(const TSCplx &A, const float BI); | |
| 3 | TCplx CMulI(const double AI, const TCplx &B); | Multiply complex number B with imaginary number Ai. |
| 4 | TSCplx CMulI(const float AI, const TSCplx &B); |
Overload 1: TCplx CMulI(const TCplx &A, const double BI);
Multiply two complex numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const TCplx & | |
| 2 | BI | const double |
Remarks:
Multiply complex number A with imaginary number Bi: R = A*b*i;
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TSCplx CMulI(const TSCplx &A, const float BI);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const TSCplx & | |
| 2 | BI | const float |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 3: TCplx CMulI(const double AI, const TCplx &B);
Multiply complex number B with imaginary number Ai.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AI | const double | |
| 2 | B | const TCplx & |
Remarks:
Multiply complex number B with imaginary number Ai: R = a*i*B;
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 4: TSCplx CMulI(const float AI, const TSCplx &B);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AI | const float | |
| 2 | B | const TSCplx & |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler