Table
Usage
• Table[expr, { }] generates a list of copies of expr. • Table[expr, {i, }] generates a list of the values of expr when i runs from 1 to . • Table[expr, {i, , }] starts with i = . • Table[expr, {i, , , di}] uses steps di. • Table[expr, {i, , }, {j, , }, ... ] gives a nested list. The list associated with i is outermost.
Notes
• Table evaluates its arguments in a non-standard way (see Section A.4.2). • Table uses the standard Mathematica iteration specification. • You can use Table to build up vectors, matrices and tensors. • See also: Range, DiagonalMatrix, IdentityMatrix, Array, Do, Sum, Product, FunctionInterpolation, NestList, NestWhileList, SparseArray. • New in Version 1.
|