Primes
(Built-in Mathematica Symbol) Primes represents the domain of prime numbers, as in x \[Element] Primes.
RandomInteger[{i_min, i_max}] gives a pseudorandom integer in the range {i_min, i_max}. RandomInteger[i_max] gives a pseudorandom integer in the range {0, ...
TransferFunctionExpand[tf] expands polynomial terms in the numerators and denominators of the TransferFunctionModel object tf.
Assuming[assum, expr] evaluates expr with assum appended to $Assumptions, so that assum is included in the default assumptions used by functions such as Refine, Simplify, and ...
Lists are very important structures in Mathematica. Lists allow you treat any kind of collection of objects as a single entity. Sometimes you need to pick out or extract ...
Binarize[image] creates a binary image from image by replacing all values above a globally determined threshold with 1 and others with 0.Binarize[image, t] creates a binary ...
DirectedGraph[g] gives a directed graph from the undirected graph g.DirectedGraph[g, conv] gives a directed graph using the conversion conv.
FindFile[name] finds the file with the specified name that would be loaded by Get[name] and related functions.
LengthWhile[list, crit] gives the number of continuous elements e_i starting at the beginning of list for which crit[e_i] is True.
Save
(Built-in Mathematica Symbol) Save["filename", symbol] appends definitions associated with the specified symbol to a file. Save["filename", " form"] appends definitions associated with all symbols whose ...