Calculates the inverse of this 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
The DiagonalMatrix that is the inverse of the DiagonalMatrix.
Exceptions
| Exception | Condition |
|---|---|
| MatrixSingularException | The DiagonalMatrix is singular and does not have an inverse. |
| DimensionMismatchException | The matrix is not square. |