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