Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function MulI(const X: TCplx): TCplx; | Multiplies complex number with I. |
| 2 | procedure MulI(const X: TCplx; out result: TCplx); | Multiplies complex number with I. |
| 3 | function MulI(const X: TSCplx): TSCplx; | |
| 4 | procedure MulI(const X: TSCplx; out result: TSCplx); |
Overload 1: function MulI(const X: TCplx): TCplx;
Multiplies complex number with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TCplx |
Returns: TCplx (complex) - original value, multiplied with i: (x+I*y) becomes: -y+I*x
Overload 2: procedure MulI(const X: TCplx; out result: TCplx);
Multiplies complex number with I.
| # | Name | Description |
|---|---|---|
| 1 | X | Defines the input parameter for multiplying with I. |
| 2 | result | Stores the result of multiplying with I. |
Result: stored in self (calling object)
Overload 3: function MulI(const X: TSCplx): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx |
Returns: TSCplx