LinearSolveFunction[dimensions, data] represents a function for providing solutions to a matrix equation.
LogLikelihood[dist, {x_1, x_2, ...}] gives the log-likelihood function for observations x_1, x_2, ... from the distribution dist.
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.
PseudoInverse[m] finds the pseudoinverse of a rectangular matrix.
RescalingTransform[{{x_min, x_max}, {y_min, y_max}, ...}, {{xp_min, xp_max}, ...}] gives a TransformationFunction that rescales the region with coordinate ranges x_min to ...
Take
(Built-in Mathematica Symbol) Take[list, n] gives the first n elements of list. Take[list, -n] gives the last n elements of list. Take[list, {m, n}] gives elements m through n of list. Take[list, seq_1, ...
Thread
(Built-in Mathematica Symbol) Thread[f[args]] "threads" f over any lists that appear in args. Thread[f[args], h] threads f over any objects with head h that appear in args. Thread[f[args], h, n] threads f ...
TruncatedDistribution[{x_min, x_max}, dist] represents the distribution obtained by truncating the values of dist to lie between x_min and ...
When you make a definition in the form f[args]=rhs or f[args]:=rhs, Mathematica associates your definition with the object f. This means, for example, that such definitions ...