Click or drag to resize
DigitalRuneMatrixDInverse Property
Returns the inverse or pseudo-inverse of this matrix.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public MatrixD Inverse { get; }

Property Value

Type: MatrixD
The inverse or pseudo-inverse of this matrix.
Exceptions
ExceptionCondition
MathematicsException The matrix is singular (i.e. it is not invertible).
Remarks

The property does not change this instance. To invert this instance you need to call Invert.

If this matrix is square, the inverse is returned; otherwise the pseudo-inverse.

See Also