LUDecomposition[m] generates a representation of the LU decomposition of a square matrix m.
MapIndexed[f, expr] applies f to the elements of expr, giving the part specification of each element as a second argument to f. MapIndexed[f, expr, levelspec] applies f to ...
Map
(Built-in Mathematica Symbol) Map[f, expr] or f /@ expr applies f to each element on the first level in expr. Map[f, expr, levelspec] applies f to parts of expr specified by levelspec.
Max
(Built-in Mathematica Symbol) Max[x_1, x_2, ...] yields the numerically largest of the x_i. Max[{x_1, x_2, ...}, {y_1, ...}, ...] yields the largest element of any of the lists.
Mean
(Built-in Mathematica Symbol) Mean[list] gives the statistical mean of the elements in list. Mean[dist] gives the mean of the symbolic distribution dist.
Mod
(Built-in Mathematica Symbol) Mod[m, n] gives the remainder on division of m by n. Mod[m, n, d] uses an offset d.
MomentEvaluate[mexpr, dist] evaluates formal moments in the moment expression mexpr on the distribution dist.MomentEvaluate[mexpr, list] evaluates formal moments and formal ...
MomentGeneratingFunction[dist, t] gives the moment generating function for the symbolic distribution dist as a function of the variable t. MomentGeneratingFunction[dist, ...
MovingAverage[list, r] gives the moving average of list, computed by averaging runs of r elements.MovingAverage[list, {w_1, w_2, ..., w_r}] gives the moving average of list, ...
Multinomial[n_1, n_2, ...] gives the multinomial coefficient (n_1 + n_2 + ...)!/(n_1! n_2! ...).