Append• Append[expr, elem] gives expr with elem appended. • Example: Append[{a, b}, c] . • See also: Prepend.  Examples Using InstantCalculatorsHere are the InstantCalculators for the Append function. Enter the parameters for your calculation and click Calculate to see the result.
Out[1]= |  |
Out[2]= |  |
Entering Commands DirectlyYou can paste a template for the command via the Text Input button on the Append Function Controller. This appends x to {a, b}.
Out[3]= |  |
If you are iteratively building a list, it is usually more efficient to use {list, new} at each step, followed by Flatten at the end, than to use Append[list, new] at each step.
Out[5]= |  |
Out[6]= |  |
Clear the variable definition.
|