Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx FlipConj(TCplx X) | Swaps real and imaginary part and conjugates the result. |
| 2 | void FlipConj(TCplx X, ref TCplx result) | Swaps real and imaginary part and conjugates the result. |
| 3 | TSCplx FlipConj(TSCplx X) | |
| 4 | void FlipConj(TSCplx X, ref TSCplx result) |
Overload 1: TCplx FlipConj(TCplx X)
Swaps real and imaginary part and conjugates the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TCplx | scalar |
Returns: TCplx (complex) - Flipped conjugated complex number: Flip(x+i*y), becomes: y-i*x.
See Also: Math387.Flip
Overload 2: void FlipConj(TCplx X, ref TCplx result)
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: TSCplx FlipConj(TSCplx X)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx | scalar |
Returns: TSCplx
Overload 4: void FlipConj(TSCplx X, ref TSCplx result)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx | scalar |
| 2 | result | TSCplx (ref) |
Result: stored in self (calling object)