Code generation from Mathematica involves converting programs written in the Mathematica language into other languages and then supporting them so that they can be executed. ...
Mathematica comes with all the tools and configuration so you can immediately carry out parallel computing. Note that, to take advantage of parallel computing it is often ...
ParallelSubmit[expr] submits expr for evaluation on the next available parallel kernel and returns an EvaluationObject expression representing the submitted ...
PowerExpand[expr] expands all powers of products and powers. PowerExpand[expr, {x_1, x_2, ...}] expands only with respect to the variables x_i.
Applying transformation rules. The replacement operator /. (pronounced "slash-dot") applies rules to expressions. You can give a list of rules to apply. Each rule will be ...
ExpToTrig[expr] converts exponentials in expr to trigonometric functions.
FrobeniusNumber[{a_1, ..., a_n}] gives the Frobenius number of a_1, ..., a_n.
The functional and list-oriented characteristics of the core Mathematica language allow CUDALink to provide immediate built-in data parallelism, automatically distributing ...
Any combination of equations or inequalities can be thought of as implicitly defining a region in some kind of space. The fundamental function of Reduce is to turn this type ...
Table
(Built-in Mathematica Symbol) Table[expr, {i_max}] generates a list of i_max copies of expr. Table[expr, {i, i_max}] generates a list of the values of expr when i runs from 1 to i_max. Table[expr, {i, ...