Returns the transpose of this instance.
Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public override Matrix<T> Transpose()
Public Overrides Function Transpose As Matrix(Of T)
public:
virtual Matrix<T>^ Transpose() override
abstract Transpose : unit -> Matrix<'T>
override Transpose : unit -> Matrix<'T>
Return Value
Type:
MatrixTA
MatrixT representing the
transpose of this matrix.
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 matrix returned by this method shares its component storage
with the original matrix.
To give the return value its own copy of the components,
call its CloneData method.
Reference