Calculates the inverse matrix.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Overrides Function GetInverse As Matrix |
| C# |
|---|
public override Matrix GetInverse () |
| C++ |
|---|
public: virtual Matrix^ GetInverse () override |
Return Value
A TriangularMatrix that is the matrix inverse of this instance.
Exceptions
| Exception | Condition |
|---|---|
| MatrixSingularException | The TriangularMatrix is singular and does not have an inverse. |
| DimensionMismatchException | The TriangularMatrix is not square. |