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 matrix inverse of the Matrix.

Exceptions

ExceptionCondition
MatrixSingularExceptionThe Matrix is singular and does not have an inverse.
DimensionMismatchExceptionThe Matrix is not square.