Overload List
| # | Signature | Description |
|---|---|---|
| 1 | MatrixInt op_Subtraction(MatrixInt Left, MatrixInt Right) | Subtract coresponding elements in Right from Left. |
| 2 | MatrixInt op_Subtraction(MatrixInt Left, TMtxInt Right) | Subtract coresponding elements in Right from Left. |
| 3 | MatrixInt op_Subtraction(MatrixInt Left, Int32 Right) | Subtract Right from all elements in Left. |
| 4 | MatrixInt op_Subtraction(TMtxInt Left, MatrixInt Right) | Subtract coresponding elements in Right from Left. |
| 5 | MatrixInt op_Subtraction(Int32 Left, MatrixInt Right) | Subtract all elements in Right from Left. |
Overload 1: MatrixInt op_Subtraction(MatrixInt Left, MatrixInt Right)
Subtract coresponding elements in Right from Left.
Result: stored in self (calling object), returns self for chaining
Overload 2: MatrixInt op_Subtraction(MatrixInt Left, TMtxInt Right)
Subtract coresponding elements in Right from Left.
Result: stored in self (calling object), returns self for chaining
Overload 3: MatrixInt op_Subtraction(MatrixInt Left, Int32 Right)
Subtract Right from all elements in Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | MatrixInt | |
| 2 | Right | Int32 |
Result: stored in self (calling object), returns self for chaining
Overload 4: MatrixInt op_Subtraction(TMtxInt Left, MatrixInt Right)
Subtract coresponding elements in Right from Left.
Result: stored in self (calling object), returns self for chaining
Overload 5: MatrixInt op_Subtraction(Int32 Left, MatrixInt Right)
Subtract all elements in Right from Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Int32 | |
| 2 | Right | MatrixInt |
Result: stored in self (calling object), returns self for chaining