Return the transpose of a matrix.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static double[,] Transpose(
double[,] a
)
Public Shared Function Transpose (
a As Double(,)
) As Double(,)
public:
static array<double,2>^ Transpose(
array<double,2>^ a
)
static member Transpose :
a : float[,] -> float[,]
Parameters
- a
- Type: SystemDouble
A double matrix.
Return Value
Type:
Double
A
double matrix which is the transpose of the argument.
See Also