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.
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 ...
Mathematica provides a uniquely integrated and automated environment for parallel computing. With zero configuration, full interactivity, and seamless local and network ...
Introduction Getting Started Configuring and Monitoring
Parallel is a setting of ModulationType, an option of function FrequencyModulation.
ParallelMap[f, expr] applies f in parallel to each element on the first level in expr.ParallelMap[f, expr, levelspec] applies f in parallel to parts of expr specified by ...
The user interface for Mathematica provides many options for formatting input and output.
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 ...
If you have a list of elements, it is often important to be able to apply a function separately to each of the elements. You can do this in Mathematica using Map. This ...
Mathematica includes many powerful operations for working with lists. It is often desirable to map a function onto each individual element in a list. While listable functions ...