Hermitian Matrix<T>.Conjugate 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#
A Matrix<T> representing the transpose of this matrix.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public override Matrix<T> ConjugateTranspose()
Return Value
Matrix<T>A Matrix<T> representing the transpose of this matrix.
Remarks
The transpose of a matrix is the matrix with rows and columns exchanged. The transpose of a matrix with m rows and n columns is a matrix with n rows and m columns.
The transpose of a Hermitian matrix is the matrix itself. For Hermitian matrices, this method returns a reference to the matrix instance.