Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function CSubI(const A: TCplx; const BI: Double): TCplx; | Subtract imaginary value BI from complex number A. |
| 2 | function CSubI(const A: TSCplx; const BI: Single): TSCplx; | |
| 3 | function CSubI(const AI: Double; const B: TCplx): TCplx; | Subtract complex number B from imaginary number AI. |
| 4 | function CSubI(const AI: Single; const B: TSCplx): TSCplx; |
Overload 1: function CSubI(const A: TCplx; const BI: Double): TCplx;
Subtract imaginary value BI from complex number A.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TCplx | |
| 2 | BI | Double |
Returns: TCplx (complex)
Remarks:
Subtract imaginary value BI from complex number A: R = A - b*i;
Overload 2: function CSubI(const A: TSCplx; const BI: Single): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TSCplx | |
| 2 | BI | Single |
Returns: TSCplx
Overload 3: function CSubI(const AI: Double; const B: TCplx): TCplx;
Subtract complex number B from imaginary number AI.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AI | Double | |
| 2 | B | TCplx |
Returns: TCplx (complex)
Remarks:
Subtract complex number B from imaginary number AI: R = a*i - B;
Overload 4: function CSubI(const AI: Single; const B: TSCplx): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AI | Single | |
| 2 | B | TSCplx |
Returns: TSCplx