|
Contents | Previous | Next | Subchapters |
| Syntax |
value'
|
| See Also | conj |
x = {[1, 2], [3, 4]}
print x'
O-Matrix will respond
{
[ 1 , 3 ]
[ 2 , 4 ]
}
The transpose operator interchanges the row and column dimensions.
For example,
x = {[1, 2], [3, 4], [5, 6]}
print x'
will result in
{
[ 1 , 3 , 5 ]
[ 2 , 4 , 6 ]
}