Mathematica allows you to customize your 2D and 3D graphics through a variety of options.
Animator[u] represents an object that displays with the value of u being continually increased from 0 to 1 with time. Animator[u, {u_min, u_max}] makes u vary from u_min to ...
Background is an option that specifies what background color to use.
EstimatedDistribution[data, dist] estimates the parametric distribution dist from data.EstimatedDistribution[data, dist, {{p, p_0}, {q, q_0}, ...}] estimates the parameters ...
FindInstance[expr, vars] finds an instance of vars that makes the statement expr be True. FindInstance[expr, vars, dom] finds an instance over the domain dom. Common choices ...
FlipView[{expr_1, expr_2}] represents an object which flips between displaying expr_1 and expr_2 each time it is clicked.FlipView[{expr_1, expr_2, ...}] cyclically flips ...
InputForm[expr] prints as a version of expr suitable for input to Mathematica.
InverseFunction[f] represents the inverse of the function f, defined so that InverseFunction[f][y] gives the value of x for which f[x] is equal to y. InverseFunction[f, n, ...
LUDecomposition[m] generates a representation of the LU decomposition of a square matrix m.
NestWhile[f, expr, test] starts with expr, then repeatedly applies f until applying test to the result no longer yields True. NestWhile[f, expr, test, m] supplies the most ...