Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function FlipConj(const X: TCplx): TCplx; | Swaps real and imaginary part and conjugates the result. |
| 2 | procedure FlipConj(const X: TCplx; out result: TCplx); | Swaps real and imaginary part and conjugates the result. |
| 3 | function FlipConj(const X: TSCplx): TSCplx; | |
| 4 | procedure FlipConj(const X: TSCplx; out result: TSCplx); |
Overload 1: function FlipConj(const X: TCplx): TCplx;
Swaps real and imaginary part and conjugates the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TCplx |
Returns: TCplx (complex) - Flipped conjugated complex number: Flip(x+i*y), becomes: y-i*x.
See Also: Math387.Flip
Overload 2: procedure FlipConj(const X: TCplx; out result: TCplx);
Swaps real and imaginary part and conjugates the result.
| # | Name | Description |
|---|---|---|
| 1 | X | Defines the input parameter for swapping real and complex part. |
| 2 | result | Stores the result of swapping and conjugating: a+i*b, becomes: b-i*a. |
Result: stored in self (calling object)
Overload 3: function FlipConj(const X: TSCplx): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx |
Returns: TSCplx