List
(Built-in Mathematica Symbol) {e_1, e_2, ...} is a list of elements.
Table
(Built-in Mathematica Symbol) Table[expr, {i_max}] generates a list of i_max copies of expr. Table[expr, {i, i_max}] generates a list of the values of expr when i runs from 1 to i_max. Table[expr, {i, ...
CosIntegral[z] gives the cosine integral function Ci(z).
FixedPoint[f, expr] starts with expr, then applies f repeatedly until the result no longer changes.
LogIntegral[z] is the logarithmic integral function li(z).
MapAt
(Built-in Mathematica Symbol) MapAt[f, expr, n] applies f to the element at position n in expr. If n is negative, the position is counted from the end. MapAt[f, expr, {i, j, ...}] applies f to the part of ...
MorphologicalTransform[image, f] applies the function f to the 3*3 neighborhood of each pixel in a binary image image.MorphologicalTransform[image, rule] applies a ...
Split
(Built-in Mathematica Symbol) Split[list] splits list into sublists consisting of runs of identical elements. Split[list, test] treats pairs of adjacent elements as identical whenever applying the ...
Union
(Built-in Mathematica Symbol) Union[list_1, list_2, ...] gives a sorted list of all the distinct elements that appear in any of the list_i. Union[list] gives a sorted version of a list, in which all ...
MultipleListPlot is replaced by ListPlot and ListLinePlot, which now accept multiple sets of data. Dashing[{Dot,Dash,LongDash}] is replaced with ...