Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx CDiv(const TCplx &A, const TCplx &B); | Complex division. |
| 2 | TSCplx CDiv(const TSCplx &A, const TSCplx &B); | |
| 3 | TCplx CDiv(const TCplx &A, const double B); | Divide two numbers. |
| 4 | TSCplx CDiv(const TSCplx &A, const float B); | |
| 5 | TCplx CDiv(const double A, const TCplx &B); | Divide two numbers. |
| 6 | TSCplx CDiv(const float A, const TSCplx &B); |
Overload 1: TCplx CDiv(const TCplx &A, const TCplx &B);
Complex division.
Returns: the result of complex division: Z = A/B.
See Also: Math387::CMul
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TSCplx CDiv(const TSCplx &A, const TSCplx &B);
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 3: TCplx CDiv(const TCplx &A, const double B);
Divide 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 CDiv(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 CDiv(const double A, const TCplx &B);
Divide 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 CDiv(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