Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx op_Division(TCplx Left, TCplx Right) | Divide operator for TCplx types. |
| 2 | TCplx op_Division(TCplx Left, Double Right) | Divide operator for mixed TCplx and real types. |
| 3 | TCplx op_Division(Double Left, TCplx Right) | Divide operator for mixed TCplx and real types. |
Overload 1: TCplx op_Division(TCplx Left, TCplx Right)
Divide operator for TCplx types.
Returns: TCplx (complex)
Overload 2: TCplx op_Division(TCplx Left, Double Right)
Divide operator for mixed TCplx and real types.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | TCplx | scalar |
| 2 | Right | Double | scalar |
Returns: TCplx (complex)
Overload 3: TCplx op_Division(Double Left, TCplx Right)
Divide operator for mixed TCplx and real types.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | TCplx | scalar |
Returns: TCplx (complex)