FortranForm[expr] prints as a Fortran language version of expr.
MapAll
(Built-in Mathematica Symbol) MapAll[f, expr] or f //@ expr applies f to every subexpression in expr.
HornerForm[poly] puts the polynomial poly in Horner form.HornerForm[poly, vars] puts poly in Horner form with respect to the variable or variable list ...
Converting from strings or boxes to expressions. This takes a string and interprets it as an expression. Here is the box structure corresponding to the textual form of an ...
Looping is a core concept in programming. Mathematica provides powerful primitives for specifying and controlling looping, not only in traditional procedural programming, but ...
Many computations are conveniently specified in terms of applying functions in parallel to many elements in a list. Mathematica provides a suite of elegant functional ...
TeXForm
(Built-in Mathematica Symbol) TeXForm[expr] prints as a TeX version of expr.
Mathematica provides a powerful and unique environment for parallel computing. Much of the functionality can be used with a minimum of effort and without paying too much ...
ParallelArray[f, n] generates in parallel a list of length n, with elements f[i], evaluated.ParallelArray[f, {n_1, n_2, ...}] generates in parallel an n_1*n_2*... array of ...
Like everything else in Mathematica the textual forms of expressions can themselves be represented as expressions. Textual forms that consist of one-dimensional sequences of ...