Parallelization is an option for Compile that specifies whether it should create a compiled function that could run in parallel.
The functional and list-oriented characteristics of the core Mathematica language allow Mathematica to provide immediate built-in data parallelism, automatically distributing ...
BetaRegularized[z, a, b] gives the regularized incomplete beta function I_z (a, b).
Mathematica's unified computation and dynamic document architecture makes possible a new level of interactive presentation—notably allowing finished "slides" on which full ...
Column
(Built-in Mathematica Symbol) Column[{expr_1, expr_2, ...}] is an object that formats with the expr_i arranged in a column, with expr_1 above expr_2, etc. Column[list, alignment] aligns each element ...
The flexibility of Mathematica's symbolic architecture is reflected in its rich collection of carefully defined constructs for localization and modularization. The use of ...
TraditionalForm[expr] prints as an approximation to the traditional mathematical notation for expr.
There are a number of important interactions in Mathematica between evaluation and pattern matching. The first observation is that pattern matching is usually done on ...
The Mathematica compiler generates a CompiledFunction expression that contains a sequence of simple instructions for evaluating a Mathematica computation. The compiled ...
If
(Built-in Mathematica Symbol) If[condition, t, f] gives t if condition evaluates to True, and f if it evaluates to False. If[condition, t, f, u] gives u if condition evaluates to neither True nor False.