Calculates the inverse of the factorized 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 GeneralMatrix that is the matrix inverse of this instance.

Remarks

The inverse of a matrix is the matrix that, when multiplied by the original matrix, gives an GetIdentity(Int32).

If the matrix is singular, its inverse does not exist and a MatrixSingularException is thrown.

Exceptions

ExceptionCondition
MatrixSingularExceptionThe matrix is singular.

See Also