MapAll
(Built-in Mathematica Symbol) MapAll[f, expr] or f //@ expr applies f to every subexpression in expr.
Message
(Built-in Mathematica Symbol) Message[symbol::tag] prints the message symbol::tag unless it has been switched off. Message[symbol::tag, e_1, e_2, ...] prints a message, inserting the values of the e_i as ...
NotebookEventActions is a notebook option that gives a list of actions to perform when specified events occur in connection with the notebook.
RandomPrime[{i_min, i_max}] gives a pseudorandom prime number in the range i_min to i_max.RandomPrime[i_max] gives a pseudorandom prime number in the range 2 to ...
SignTest[data] tests whether the median of data is zero. SignTest[{data_1, data_2}] tests whether the median of data_1\[Dash] data_2 is zero.SignTest[dspec, \[Mu] 0] tests a ...
StringDrop["string", n] gives " string" with its first n characters dropped. StringDrop["string", -n] gives " string" with its last n characters dropped. StringDrop["string", ...
Functions for constructing matrices. This generates a 2×2 matrix whose i,j^th entry is a[i,j]. Here is another way to produce the same matrix.
A typical package written in Mathematica introduces several new symbols intended for use outside the package. These symbols may correspond for example to new functions or new ...
There are a number of functions built into Mathematica which, like Plot, have various options you can set. Mathematica provides some general mechanisms for handling such ...
Functions in Mathematica are carefully set up so that you normally do not have to know how they work inside. But particularly for numerical functions that use iterative ...