PermutationMatrix.Transpose Method

Returns the transpose of this instance.

Definition

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

Return Value

Matrix<Double>
A matrix representing the transpose of this Matrix.

Remarks

The transpose of a matrix is the matrix with rows and columns exchanged.

For a permutation matrix, the transpose is also its inverse.

See Also