Return the transpose of a matrix.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static double[,] Transpose(
	double[,] a
)
Visual Basic (Declaration)
Public Shared Function Transpose ( _
	a As Double(,) _
) As Double(,)
Visual C++
public:
static array<double,2>^ Transpose(
	array<double,2>^ a
)

Parameters

a
Type: array< System..::.Double ,2>[,](,)[,]
A double matrix.

Return Value

A double matrix which is the transpose of the argument.

See Also