PermutationMatrix.Transpose Method

Returns the transpose of this instance.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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