Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector Inv(TVec *X); | Compute 1/X. |
| 2 | Matrix Inv(TMtx *X); | Compute 1/X. |
| 3 | Vector Inv(TVec *X, double Threshold); | Compute 1/X. |
| 4 | Matrix Inv(TMtx *X, double Threshold); | Compute 1/X. |
Overload 1: Vector Inv(TVec *X);
Compute 1/X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * |
Remarks:
Internally calls Vector::Inv
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 2: Matrix Inv(TMtx *X);
Compute 1/X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx * |
Remarks:
Internally calls Matrix::InvElem
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 3: Vector Inv(TVec *X, double Threshold);
Compute 1/X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | Threshold | double |
Remarks:
Internally calls Vector::Inv
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 4: Matrix Inv(TMtx *X, double Threshold);
Compute 1/X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx * | |
| 2 | Threshold | double |
Remarks:
Internally calls Matrix::InvElem
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler