Overload List
| # | Signature | Description |
|---|---|---|
| 1 | class operator Divide(const Left: Matrix; const Right: Matrix): Matrix; | Dividies Left with Right and returns result. |
| 2 | class operator Divide(const Left: Matrix; const Right: TCplx): Matrix; | Dividies Left with Right and returns result. |
| 3 | class operator Divide(const Left: Matrix; const Right: TMtxVec): Matrix; | Dividies Left with Right and returns result. |
| 4 | class operator Divide(const Left: Matrix; const Right: Double): Matrix; | Dividies Left with Right and returns result. |
| 5 | class operator Divide(const Left: TCplx; const Right: Matrix): Matrix; | Dividies Left with Right and returns result. |
| 6 | class operator Divide(const Left: TMtxVec; const Right: Matrix): Matrix; | Dividies Left with Right and returns result. |
| 7 | class operator Divide(const Left: Double; const Right: Matrix): Matrix; | Dividies Left with Right and returns result. |
Overload 1: class operator Divide(const Left: Matrix; const Right: Matrix): Matrix;
Dividies Left with Right and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 2: class operator Divide(const Left: Matrix; const Right: TCplx): Matrix;
Dividies Left with Right and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 3: class operator Divide(const Left: Matrix; const Right: TMtxVec): Matrix;
Dividies Left with Right and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 4: class operator Divide(const Left: Matrix; const Right: Double): Matrix;
Dividies Left with Right 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: class operator Divide(const Left: TCplx; const Right: Matrix): Matrix;
Dividies Left with Right and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 6: class operator Divide(const Left: TMtxVec; const Right: Matrix): Matrix;
Dividies Left with Right and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 7: class operator Divide(const Left: Double; const Right: Matrix): Matrix;
Dividies Left with Right and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | Matrix |
Result: stored in self (calling object), returns self for chaining