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