Do
(Built-in Mathematica Symbol) Do[expr, {i_max}] evaluates expr i_max times. Do[expr, {i, i_max}] evaluates expr with the variable i successively taking on the values 1 through i_max (in steps of 1). ...
Eigenvalues[m] gives a list of the eigenvalues of the square matrix m. Eigenvalues[{m, a}] gives the generalized eigenvalues of m with respect to a. Eigenvalues[m, k] gives ...
Floor
(Built-in Mathematica Symbol) Floor[x] gives the greatest integer less than or equal to x. Floor[x, a] gives the greatest multiple of a less than or equal to x.
FoldList[f, x, {a, b, ...}] gives {x, f[x, a], f[f[x, a], b], ...}.
Im
(Built-in Mathematica Symbol) Im[z] gives the imaginary part of the complex number z.
InverseContinuousWaveletTransform[cwd] gives the inverse continuous wavelet transform of a ContinuousWaveletData object cwd. InverseContinuousWaveletTransform[cwd, wave] ...
KroneckerProduct[m_1, m_2, ...] constructs the Kronecker product of the arrays m_i.
LaunchKernels[] launches all currently configured parallel subkernels.LaunchKernels[n] launches n local subkernels on the current computer.LaunchKernels[des] launches a ...
LogSeriesDistribution[\[Theta]] represents a logarithmic series distribution with parameter \[Theta].
Min
(Built-in Mathematica Symbol) Min[x_1, x_2, ...] yields the numerically smallest of the x_i. Min[{x_1, x_2, ...}, {y_1, ...}, ...] yields the smallest element of any of the lists.