Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Matrix op_Subtraction(Matrix Left, Matrix Right) | Subtracts Right from Left and returns result. |
| 2 | Matrix op_Subtraction(Matrix Left, TCplx Right) | Subtracts Right from Left and returns result. |
| 3 | Matrix op_Subtraction(Matrix Left, TMtxVec Right) | Subtracts Right from Left and returns result. |
| 4 | Matrix op_Subtraction(Matrix Left, Double Right) | Subtracts Right from Left and returns result. |
| 5 | Matrix op_Subtraction(TCplx Left, Matrix Right) | Subtracts Right from Left and returns result. |
| 6 | Matrix op_Subtraction(TMtxVec Left, Matrix Right) | Subtracts Right from Left and returns result. |
| 7 | Matrix op_Subtraction(Double Left, Matrix Right) | Subtracts Right from Left and returns result. |
Overload 1: Matrix op_Subtraction(Matrix Left, Matrix Right)
Subtracts Right from Left and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 2: Matrix op_Subtraction(Matrix Left, TCplx Right)
Subtracts Right from Left and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 3: Matrix op_Subtraction(Matrix Left, TMtxVec Right)
Subtracts Right from Left and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 4: Matrix op_Subtraction(Matrix Left, Double Right)
Subtracts Right from Left and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Matrix | |
| 2 | Right | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Overload 5: Matrix op_Subtraction(TCplx Left, Matrix Right)
Subtracts Right from Left and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 6: Matrix op_Subtraction(TMtxVec Left, Matrix Right)
Subtracts Right from Left and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 7: Matrix op_Subtraction(Double Left, Matrix Right)
Subtracts Right from Left and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | Matrix |
Result: stored in self (calling object), returns self for chaining