Matrix<T>.GetInverse(Boolean) Method

Calculates the inverse of this matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public override Matrix<T> GetInverse(
	bool overwrite
)

Parameters

overwrite  Boolean
A Boolean value that specifies whether the matrix may be overwritten with the inverse.

Return Value

Matrix<T>
The matrix inverse of the Matrix<T>.

Exceptions

MatrixSingularExceptionThe Matrix<T> is singular and does not have an inverse.
DimensionMismatchExceptionThe Matrix<T> is not square.

See Also