Legacy Documentation

Mathematica® Teacher's Edition (2002)

This is documentation for an obsolete product.
Current products and services
 Documentation /  Mathematica Teacher's Edition /  Built-in Functions /  Lists and Matrices /  Element Extraction /

Take

FilledSmallSquare Take[list, n] gives the first n elements of list.
FilledSmallSquare Take[list, -n] gives the last n elements of list.
FilledSmallSquare Take[list, m, n] gives elements m through n of list.
FilledSmallSquare Take[list, m, n, s] gives elements m through n in steps of s.
FilledSmallSquare Take[list, , , ... ] gives a nested list in which elements specified by are taken at level i in list.

FilledSmallSquare Take uses the standard sequence specification (see Section A.3.5).
FilledSmallSquare Examples: Take[a,b,c,d,e, 3]LongRightArrow.
FilledSmallSquare Take[a,b,c,d,e, -2]LongRightArrow.
FilledSmallSquare Take[Range[15], 3, 12, 4]LongRightArrow.
FilledSmallSquare Take can be used on an object with any head, not necessarily List.
FilledSmallSquare Take[list, , ] effectively extracts a submatrix from list.
FilledSmallSquare Example: Take[a,b,c,d,e,f, -1, 2]LongRightArrow.
FilledSmallSquare See The Mathematica Book on the web: Section 1.8.4.
FilledSmallSquare See also: Part, Drop, Select, Cases, Partition.