The Mathematica compiler generates a CompiledFunction expression that contains a sequence of simple instructions for evaluating a Mathematica computation. The compiled ...
CreateLibrary[source, name] compiles a string of C code and creates a library file, name.ext.CreateLibrary[{file 1, ...}, name] compiles a number of C source files and ...
MeanTest is superseded by the Mathematica kernel functions LocationTest, TTest, and ZTest. MeanDifferenceTest is superseded by the Mathematica kernel functions ...
ChiDistribution[\[Nu]] represents a \[Chi] distribution with \[Nu] degrees of freedom.
HalfNormalDistribution[\[Theta]] represents a half-normal distribution with scale inversely proportional to parameter \[Theta].
JordanDecomposition[m] yields the Jordan decomposition of a square matrix m. The result is a list {s, j} where s is a similarity matrix and j is the Jordan canonical form of ...
ListInterpolation[array] constructs an InterpolatingFunction object that represents an approximate function that interpolates the array of values given. ...
MaxwellDistribution[\[Sigma]] represents a Maxwell distribution with scale parameter \[Sigma].
NSum
(Built-in Mathematica Symbol) NSum[f, {i, i_min, i_max}] gives a numerical approximation to the sum \[Sum]i = i_min i_max f.NSum[f, {i, i_min, i_max, di}] uses a step di in the sum.
Part
(Built-in Mathematica Symbol) expr[[i]] or Part[expr, i] gives the i\[Null]^th part of expr. expr[[-i]] counts from the end. expr[[i, j, ...]] or Part[expr, i, j, ...] is equivalent to expr[[i]][[j]] .... ...