Click or drag to resize
sqx

MatrixTranspose Method

[Matrix] Transpose()

Namespace:  sqx
Assembly:  SQX (in SQX.dll) Version: 1.0.2.6 (1.0.2.6)
Syntax
C#
public Matrix Transpose()

Return Value

Type: Matrix
[Matrix]
Remarks
Matrix Transpose.
Examples
SQL
declare @A sqx.Matrix = '1,2;3,4;5,6'
print @A.ToString()
print '******'
print @A.Transpose().ToString()
/*
1,2;
3,4;
5,6
******
1,3,5;
2,4,6*/
See Also