Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx CMul(const TCplx &A, const TCplx &B); | Complex multipliction. |
| 2 | TSCplx CMul(const TSCplx &A, const TSCplx &B); | |
| 3 | TCplx CMul(const TCplx &A, const double B); | Multiply two numbers. |
| 4 | TSCplx CMul(const TSCplx &A, const float B); | |
| 5 | TCplx CMul(const double A, const TCplx &B); | Multiply two numbers. |
| 6 | TSCplx CMul(const float A, const TSCplx &B); |
Overload 1: TCplx CMul(const TCplx &A, const TCplx &B);
Complex multipliction.
Returns: the result of complex multiplication: Z = A*B.
See Also: Math387::CDiv
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TSCplx CMul(const TSCplx &A, const TSCplx &B);
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 3: TCplx CMul(const TCplx &A, const double B);
Multiply two numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const TCplx & | |
| 2 | B | const double |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 4: TSCplx CMul(const TSCplx &A, const float B);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const TSCplx & | |
| 2 | B | const float |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 5: TCplx CMul(const double A, const TCplx &B);
Multiply two numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const double | |
| 2 | B | const TCplx & |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 6: TSCplx CMul(const float A, const TSCplx &B);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const float | |
| 2 | B | const TSCplx & |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler