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

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