Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx MulI(TCplx X) | Multiplies complex number with I. |
| 2 | void MulI(TCplx X, ref TCplx result) | Multiplies complex number with I. |
| 3 | TSCplx MulI(TSCplx X) | |
| 4 | void MulI(TSCplx X, ref TSCplx result) |
Overload 1: TCplx MulI(TCplx X)
Multiplies complex number with I.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TCplx | scalar |
Returns: TCplx (complex) - original value, multiplied with i: (x+I*y) becomes: -y+I*x
Overload 2: void MulI(TCplx X, ref TCplx result)
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: TSCplx MulI(TSCplx X)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx | scalar |
Returns: TSCplx
Overload 4: void MulI(TSCplx X, ref TSCplx result)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx | scalar |
| 2 | result | TSCplx (ref) |
Result: stored in self (calling object)