MapAt
(Built-in Mathematica Symbol) MapAt[f, expr, n] applies f to the element at position n in expr. If n is negative, the position is counted from the end. MapAt[f, expr, {i, j, ...}] applies f to the part of ...
MapThread[f, {{a_1, a_2, ...}, {b_1, b_2, ...}, ...}] gives {f[a_1, b_1, ...], f[a_2, b_2, ...], ...}. MapThread[f, {expr_1, expr_2, ...}, n] applies f to the parts of the ...
MatrixRank[m] gives the rank of the matrix m.
McLaughlinGroupMcL[] represents the sporadic simple McLaughlin group McL.
Median
(Built-in Mathematica Symbol) Median[list] gives the median of the elements in list. Median[dist] gives the median of the symbolic distribution dist.
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.
ModularLambda[\[Tau]] gives the modular lambda elliptic function \[Lambda](\[Tau]).
Module
(Built-in Mathematica Symbol) Module[{x, y, ...}, expr] specifies that occurrences of the symbols x, y, ... in expr should be treated as local. Module[{x = x_0, ...}, expr] defines initial values for x, ...
Monitor
(Built-in Mathematica Symbol) Monitor[expr, mon] generates a temporary monitor cell in which the continually updated current value of mon is displayed during the course of evaluation of expr.
MorphologicalTransform[image, f] applies the function f to the 3*3 neighborhood of each pixel in a binary image image.MorphologicalTransform[image, rule] applies a ...