Which
(Built-in Mathematica Symbol) Which[test_1, value_1, test_2, value_2, ...] evaluates each of the test_i in turn, returning the value of the value_i corresponding to the first one that yields True.
When you have numerical data, it is often convenient to find a simple formula that approximates it. For example, you can try to "fit" a line or curve through the points in ...
BarChart[{y_1, y_2, ...}] makes a bar chart with bar lengths y_1, y_2, ....BarChart[{..., w_i[y_i, ...], ..., w_j[y_j, ...], ...}] makes a bar chart with bar features defined ...
PairedBarChart[{y_1, y_2, ...}, {z_1, z_2, ...}] makes a paired bar chart with bar lengths y_1, y_2, ... and z_1, z_2, ..., respectively.PairedBarChart[{..., w_i[y_i, ...], ...
FixedPointList[f, expr] generates a list giving the results of applying f repeatedly, starting with expr, until the results no longer change.
Fold
(Built-in Mathematica Symbol) Fold[f, x, list] gives the last element of FoldList[f, x, list].
Frame
(Built-in Mathematica Symbol) Frame is an option for Graphics, Grid, and other constructs that specifies whether to include a frame.
ParallelCombine[f, h[e_1, e_2, ...], comb] evaluates f[h[e_1, e_2, ...]] in parallel by distributing parts of the computation to all parallel kernels and combining the ...
The leading term of a polynomial can be chosen in many different ways. For multivariate polynomials, sorting by the total degree of the monomials is often useful. Different ...
InterpolatingFunction[domain, table] represents an approximate function whose values are found by interpolation.