Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx CSubI(const TCplx &A, const double BI); | Subtract imaginary value BI from complex number A. |
| 2 | TSCplx CSubI(const TSCplx &A, const float BI); | |
| 3 | TCplx CSubI(const double AI, const TCplx &B); | Subtract complex number B from imaginary number AI. |
| 4 | TSCplx CSubI(const float AI, const TSCplx &B); |
Overload 1: TCplx CSubI(const TCplx &A, const double BI);
Subtract imaginary value BI from complex number A.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const TCplx & | |
| 2 | BI | const double |
Remarks:
Subtract imaginary value BI from complex number A: R = A - b*i;
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TSCplx CSubI(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 CSubI(const double AI, const TCplx &B);
Subtract complex number B from imaginary number AI.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AI | const double | |
| 2 | B | const TCplx & |
Remarks:
Subtract complex number B from imaginary number AI: R = a*i - B;
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 4: TSCplx CSubI(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