LinearOperator<T>.GetInverse Method

Calculates the inverse matrix..

Definition

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

Return Value

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

Exceptions

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

See Also