Macaulay2 » Documentation
Packages » Macaulay2Doc :: Table
next | previous | forward | backward | up | index | toc

Table -- the class of all table expressions

Description

Table -- a type of Expression representing a table, i.e., a list of lists of the same length.

i1 : Table {{a,b,c},{a,bb,ccc}}

o1 = a   b   c 
            
     a  bb  ccc

o1 : Expression of class Table
i2 : value oo

o2 = {{a, b, c}, {a, bb, ccc}}

o2 : List

See also

For the programmer

The object Table is a header type, with ancestor classes Expression < BasicList < Thing.