 |
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]=
|
|
|
|
|