Maxima Function
append (list_1, ..., list_n)
Returns a single list of the elements of list_1 followed
by the elements of list_2, ... append
also works on
general expressions, e.g. append (f(a,b), f(c,d,e));
yields
f(a,b,c,d,e)
.
Do example(append);
for an example.