PermutationMatrix.GetInverse Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetInverse() Calculates the inverse matrix..
GetInverse(Boolean) Calculates the inverse of this matrix.

GetInverse(Boolean)

Calculates the inverse of this matrix.
C#
public override Matrix<double> GetInverse(
	bool overwrite
)

Parameters

overwrite  Boolean
 

Return Value

Matrix<Double>
The matrix inverse of the PermutationMatrix.

Remarks

The inverse of a permutation matrix equals its transpose.

See Also