BezierCurve[{pt_1, pt_2, ...}] is a graphics primitive that represents a Bézier curve with control points pt_i.
CityData["name", " property"] gives the value of the specified property for the city with the specified name.CityData["name"] gives a list of the full specifications of ...
GraphicsGrid[{{g_11, g_12, ...}, ...}] generates a graphic in which the g_ij are laid out in a two-dimensional grid.
GatherBy[list, f] gathers into sublists each set of elements in list that gives the same value when f is applied.GatherBy[list, {f_1, f_2, ...}] gathers list into nested ...
Getting parts of lists. This gives a list of parts 1 and 3. Here is a nested list.
WordData["word", " property"] gives the specified property for the English word " word".WordData["word"] gives a list of full word specifications representing possible uses ...
XMLGet["file"] returns the XML expression tree corresponding to the contents of " file".XMLGet["file", parser] uses the pre-initialized XMLParser object to parse the file. ...
Cylinder[{{x_1, y_1, z_1}, {x_2, y_2, z_2}}, r] represents a cylinder of radius r around the line from (x_1, y_1, z_1) to (x_2, y_2, z_2). Cylinder[{{x_1, y_1, z_1}, {x_2, ...
Max
(Built-in Mathematica Symbol) Max[x_1, x_2, ...] yields the numerically largest of the x_i. Max[{x_1, x_2, ...}, {y_1, ...}, ...] yields the largest element of any of the lists.
Nest
(Built-in Mathematica Symbol) Nest[f, expr, n] gives an expression with f applied n times to expr.