LinearOperator<T>.GetInverse(Boolean) Method

Calculates the inverse of the factorized matrix.

Definition

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

Parameters

overwrite  Boolean
If false, the inverse matrix is returned as a new instance. If true, the decomposition is overwritten with the solution. In this case, the decomposition is no longer valid after the call to this method.

Return Value

Matrix<T>

Remarks

The inverse of a matrix is the matrix that, when multiplied by the original matrix, gives an identity matrix.

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

The inverse is only defined for a square matrix. If the matrix is not square, an exception of type DimensionMismatchException is thrown.

Exceptions

DimensionMismatchExceptionThe matrix is not square.
MatrixSingularExceptionThe matrix is singular.

See Also