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