|
  
tableform
Format: tableform( a )
Arguments: [any] a Input matrix
Returns: (text) Table form representation of the matrix
a
Description: The values of matrices are normally
displayed as hierarchical lists in exactly the same format as
they are specified. Alternatively, the tableform primitive
will create a 2-dimensional table representation of the matrix.
Examples: tableform([[1,2],[3,4]])
= 1 3
2 4
tableform([1,2,3]) = 1
2
3
tableform([[1],[2],[3]]) =
1 2 3
See Also: table, tolist, trans, determinant, Add, Subtract,
Multiply, Divide, Power
|