Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Divide(const Left: TMtx; const Right: TMtx): Matrix; | Divide Left with Right (matrix division) returning Matrix type result. |
| 2 | function Divide(const Left: TVec; const Right: TMtx): Vector; | Divide Left vector with right matrix (matrix division) returning Vector type result. |
Overload 1: function Divide(const Left: TMtx; const Right: TMtx): Matrix;
Divide Left with Right (matrix division) returning Matrix type result.
Returns: Matrix
Remarks:
Internally calls Matrix.LUSolve
Overload 2: function Divide(const Left: TVec; const Right: TMtx): Vector;
Divide Left vector with right matrix (matrix division) returning Vector type result.
Returns: Vector
Remarks:
Internally calls Matrix.LUSolve