[top][index]
search for:

Table -- the class of all table expressions

The header type Table is a member of the class HeaderType. Each object of class Table is called a table expression. Each table expression is also a member of class Expression.

More general types (whose methods may also apply) :

  • Expression -- the class of all expressions
  • BasicList -- the class of all basic lists
  • 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 : Table
    i2 : value oo

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

    o2 : List

    See also:

  • MatrixExpression -- the class of all matrix expressions
  • Methods for using a table expression :

  • net Table
  • toString Table
  • value Table

  • [top][index]
    search for: