Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function CMulI(const A: TCplx; const BI: Double): TCplx; | Multiply two complex numbers. |
| 2 | function CMulI(const A: TSCplx; const BI: Single): TSCplx; | |
| 3 | function CMulI(const AI: Double; const B: TCplx): TCplx; | Multiply complex number B with imaginary number Ai. |
| 4 | function CMulI(const AI: Single; const B: TSCplx): TSCplx; |
Overload 1: function CMulI(const A: TCplx; const BI: Double): TCplx;
Multiply two complex numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TCplx | |
| 2 | BI | Double |
Returns: TCplx (complex)
Remarks:
Multiply complex number A with imaginary number Bi: R = A*b*i;
Overload 2: function CMulI(const A: TSCplx; const BI: Single): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TSCplx | |
| 2 | BI | Single |
Returns: TSCplx
Overload 3: function CMulI(const AI: Double; const B: TCplx): TCplx;
Multiply complex number B with imaginary number Ai.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AI | Double | |
| 2 | B | TCplx |
Returns: TCplx (complex)
Remarks:
Multiply complex number B with imaginary number Ai: R = a*i*B;
Overload 4: function CMulI(const AI: Single; const B: TSCplx): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AI | Single | |
| 2 | B | TSCplx |
Returns: TSCplx