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