Mathematica 9 is now available
Previous section-----Next section

1.8.7 Combining Lists

Join[ ,  , ... ] concatenate lists together
Union[ ,  , ... ] combine lists, removing repeated elements and sorting the result

Functions for combining lists.
Join concatenates any number of lists together.

In[1]:=  Join[{a, b, c}, {x, y}, {t, u}]

Out[1]=

Union combines lists, keeping only distinct elements.

In[2]:=  Union[{a, b, c}, {c, a, d}, {a, d}]

Out[2]=



Any questions about topics on this page? Click here to get an individual response.Buy NowMore Information
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.