Click or drag to resize

NMathFunctionsTranspose(DoubleComplexMatrix) Method

Returns the transpose of a given matrix. The matrix returned is a new view of the same data as the given matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexMatrix Transpose(
	DoubleComplexMatrix A
)

Parameters

A  DoubleComplexMatrix
A matrix.

Return Value

DoubleComplexMatrix
A new matrix B with B[i,k] = A[k,i]. The returned matrix is a new view into the data referenced by A.
Remarks
Data is not copied.
See Also