Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx CSub(TCplx A, TCplx B) | Complex subtraction. |
| 2 | TCplx CSub(TCplx A, Double B) | Subtract two numbers. |
| 3 | void CSub(TCplx A, Double B, ref TCplx result) | Subtract two numbers. |
| 4 | TSCplx CSub(TSCplx A, TSCplx B) | |
| 5 | TSCplx CSub(TSCplx A, Single B) | |
| 6 | void CSub(TSCplx A, Single B, ref TSCplx result) | |
| 7 | TCplx CSub(Double A, TCplx B) | Subtract two numbers. |
| 8 | void CSub(Double A, TCplx B, ref TCplx result) | Subtract two numbers. |
| 9 | TSCplx CSub(Single A, TSCplx B) | |
| 10 | void CSub(Single A, TSCplx B, ref TSCplx result) |
Overload 1: TCplx CSub(TCplx A, TCplx B)
Complex subtraction.
Returns: TCplx (complex) - the result of complex subtraction: Z = A-B.
Overload 2: TCplx CSub(TCplx A, Double B)
Overload 3: void CSub(TCplx A, Double B, ref TCplx result)
Subtract two numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TCplx | scalar |
| 2 | B | Double | scalar |
| 3 | result | TCplx (ref) | output |
Result: stored in self (calling object)
Overload 4: TSCplx CSub(TSCplx A, TSCplx B)
Overload 5: TSCplx CSub(TSCplx A, Single B)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TSCplx | scalar |
| 2 | B | Single | scalar |
Returns: TSCplx
Overload 6: void CSub(TSCplx A, Single B, ref TSCplx result)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TSCplx | scalar |
| 2 | B | Single | scalar |
| 3 | result | TSCplx (ref) |
Result: stored in self (calling object)
Overload 7: TCplx CSub(Double A, TCplx B)
Overload 8: void CSub(Double A, TCplx B, ref TCplx result)
Subtract two numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | Double | scalar |
| 2 | B | TCplx | scalar |
| 3 | result | TCplx (ref) | output |
Result: stored in self (calling object)
Overload 9: TSCplx CSub(Single A, TSCplx B)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | Single | scalar |
| 2 | B | TSCplx | scalar |
Returns: TSCplx
Overload 10: void CSub(Single A, TSCplx B, ref TSCplx result)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | Single | scalar |
| 2 | B | TSCplx | scalar |
| 3 | result | TSCplx (ref) |
Result: stored in self (calling object)