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