|
|
|||
|
|
| Mathematica Tutorial | Functions »|Tutorials »|More About » |
| Join[list1,list2,...] | concatenate lists together |
| Union[list1,list2,...] | combine lists, removing repeated elements and sorting the result |
| Riffle[list1,list2] | interleave elements of list1 and list2 |
Functions for combining lists.
Join concatenates any number of lists together.
|
Union combines lists, keeping only distinct elements.
|
Riffle combines lists by interleaving their elements.
|