ParallelSubmit[expr] submits expr for evaluation on the next available parallel kernel and returns an EvaluationObject expression representing the submitted ...
Rasterize[g] returns a rasterized graphic of g. Rasterize[g, elem] gives the element elem associated with the rasterized form of g.
RootSum
(Built-in Mathematica Symbol) RootSum[f, form] represents the sum of form[x] for all x that satisfy the polynomial equation f[x] == 0.
ScientificForm[expr] prints with all real numbers in expr given in scientific notation. ScientificForm[expr, n] prints with numbers given to n-digit precision.
SinIntegral[z] gives the sine integral function Si(z).
Tuples
(Built-in Mathematica Symbol) Tuples[list, n] generates a list of all possible n-tuples of elements from list. Tuples[{list_1, list_2, ...}] generates a list of all possible tuples whose i\[Null] ...
Applying transformation rules. The replacement operator /. (pronounced "slash-dot") applies rules to expressions. You can give a list of rules to apply. Each rule will be ...
Mathematica provides various ways to set up conditionals, which specify that particular expressions should be evaluated only if certain conditions hold. Conditional ...
Convolution and correlation are central to many kinds of operations on lists of data. They are used in such areas as signal and image processing, statistical data analysis, ...
There are many situations where one wants to find a formula that best fits a given set of data. One way to do this in Mathematica is to use Fit. Basic linear fitting. Here is ...