Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Inv(const X: TMtx): Matrix; | Result = 1/X |
| 2 | function Inv(const X: TMtx; Threshold: Double): Matrix; | Result = 1/X |
| 3 | function Inv(const X: TVec): Vector; | Result = 1/X |
| 4 | function Inv(const X: TVec; Threshold: Double): Vector; | Result = 1/X |
Overload 1: function Inv(const X: TMtx): Matrix;
Overload 2: function Inv(const X: TMtx; Threshold: Double): Matrix;
Compute 1/X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx | |
| 2 | Threshold | Double | scalar |
Returns: Matrix
Remarks:
Internally calls Matrix.InvElem
Overload 3: function Inv(const X: TVec): Vector;
Overload 4: function Inv(const X: TVec; Threshold: Double): Vector;
Compute 1/X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec | |
| 2 | Threshold | Double | scalar |
Returns: Vector
Remarks:
Internally calls Vector.Inv