Return the transpose of a Complex matrix.

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

Syntax

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

Parameters

a
Type: array< Imsl.Math..::.Complex ,2>[,](,)[,]
A Complex matrix.

Return Value

The Complex matrix transpose of the argument.

See Also