SymmetricMatrix<T>.GetInverse Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetInverse() Calculates the inverse matrix..
GetInverse(Boolean) Calculates the inverse matrix.

GetInverse(Boolean)

Calculates the inverse matrix.
C#
public override Matrix<T> GetInverse(
	bool overwrite
)

Parameters

overwrite  Boolean
 

Return Value

Matrix<T>
A SymmetricMatrix<T> that is the matrix inverse of this instance.

Exceptions

MatrixSingularExceptionThe SymmetricMatrix<T> is singular and does not have an inverse.

See Also