next
|
previous
|
forward
|
backward
| up |
top
|
index
|
toc
|
Macaulay2 website
Macaulay2Doc
::
transpose(List)
transpose(List) -- transposes a table
Synopsis
Function:
transpose
Usage:
transpose T
Inputs:
T
,
a
list
, which must be a
table
Outputs:
a
list
, the transpose of the table
T
Description
Here is an example.
i1 : transpose{{a, b, c},{d, e, f}} o1 = {{a, d}, {b, e}, {c, f}} o1 : List
Ways to use this method:
transpose(List)
-- transposes a table