TriangularMatrix<T>.GetInverse Method

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

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 TriangularMatrix<T> that is the matrix inverse of this instance.

Exceptions

MatrixSingularException

The TriangularMatrix<T> is singular and does not have an inverse.

DimensionMismatchException

The TriangularMatrix<T> is not square.

See Also