Matrix<T>.Conjugate Method

Returns the transpose of this instance.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual Matrix<T> Conjugate()

Return Value

Matrix<T>
A Matrix<T> representing the transpose of this instance.

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.

See Also