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