Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TSCplx operator/(const TSCplx &a, const TSCplx &b); | Divide operator for TSCplx types. |
| 2 | TSCplx operator/(const TSCplx &a, float b); | Divide operator for mixed TSCplx and real types. |
| 3 | TSCplx operator/(float a, const TSCplx &b); | Divide operator for mixed TSCplx and real types. |
Overload 1: TSCplx operator/(const TSCplx &a, const TSCplx &b);
Divide operator for TSCplx types.
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler
Overload 2: TSCplx operator/(const TSCplx &a, float b);
Divide operator for mixed TSCplx and real types.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | const TSCplx & | |
| 2 | b | float |
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler
Overload 3: TSCplx operator/(float a, const TSCplx &b);
Divide operator for mixed TSCplx and real types.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | float | |
| 2 | b | const TSCplx & |
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler