Mathematica provides various ways to set up conditionals, which specify that particular expressions should be evaluated only if certain conditions hold. Conditional ...
InterpolateRoot[lhs == rhs, {x, x_0, x_1}] searches for a numerical solution to the equation lhs == rhs using x_0 and x_1 as the first two values of x.
FixedPointList[f, expr] generates a list giving the results of applying f repeatedly, starting with expr, until the results no longer change.
Riffle
(Built-in Mathematica Symbol) Riffle[{e_1, e_2, ...}, x] gives {e_1, x, e_2, x, ...}. Riffle[{e_1, e_2, ...}, {x_1, x_2, ...}] gives {e_1, x_1, e_2, x_2, ...}. Riffle[list, x, n] yields a list in which ...
The Database Explorer is a graphical interface to DatabaseLink. It provides a number of useful functions, such as managing connections and working with the data in a ...
Script
(GUIKit Package Symbol) Script[scriptcode] defines a script to be used either on load or during an event.
MiniMaxApproximation[expr, {x, {x_0, x_1}, m, n}] finds the rational polynomial function of x, with numerator order m and denominator order n, that gives a mini-max ...
NB
(Mathematica Import/Export Format) Registered MIME types: application/mathematica, application/vnd.wolfram.mathematica Mathematica notebooks. Used for storing and exchanging Mathematica input and output and ...
DepthFirstScan[g, s, {"event_1" -> f_1, "event_2" -> f_2, ...}] performs a depth-first scan of the graph g starting at the vertex s and evaluates f_i whenever "event_i" ...
Mathematica 8 provides functions that allow developers to implement file format converters to be integrated with the Mathematica Import and Export framework. You can ...