Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx FlipConj(const TCplx &X); | Swaps real and imaginary part and conjugates the result. |
| 2 | TSCplx FlipConj(const TSCplx &X); | |
| 3 | void FlipConj(const TCplx &X, TCplx &result); | Swaps real and imaginary part and conjugates the result. |
| 4 | void FlipConj(const TSCplx &X, TSCplx &result); |
Overload 1: TCplx FlipConj(const TCplx &X);
Swaps real and imaginary part and conjugates the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TCplx & |
Returns: Flipped conjugated complex number: Flip(x+i*y), becomes: y-i*x.
See Also: Math387::Flip
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TSCplx FlipConj(const TSCplx &X);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TSCplx & |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 3: void FlipConj(const TCplx &X, TCplx &result);
Swaps real and imaginary part and conjugates the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TCplx & | Defines the input parameter for swapping real and complex part. |
| 2 | result | TCplx & | Stores the result of swapping and conjugating: a+i*b, becomes: b-i*a. |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler