CellularAutomaton[rule, init, t] generates a list representing the evolution of the cellular automaton with the specified rule from initial condition init for t steps. ...
Particularly when you write procedural programs in Mathematica, you will often need to modify the value of a particular variable repeatedly. You can always do this by ...
Here is one way to enter a particular expression. Here is another way to enter the same expression. With a notebook front end, you can also enter the expression directly in ...
A process is simply a Mathematica expression being evaluated. A processor is a parallel kernel that performs such evaluations. The command ParallelEvaluate discussed in the ...
ParallelSum[expr, {i, i_max}] evaluates in parallel the sum \[Sum]i = 1 i_max expr.ParallelSum[expr, {i, i_min, i_max}] starts with i = i min.ParallelSum[expr, {i, i_min, ...
ParallelEvaluate[expr] evaluates the expression expr on all available parallel kernels and returns the list of results obtained.ParallelEvaluate[expr, kernel] evaluates expr ...
ParallelProduct[expr, {i, i_max}] evaluates the product \[Product]i = 1 i_max expr in parallel.ParallelProduct[expr, {i, i_min, i_max}] starts with i = ...
ParallelDo[expr, {i_max}] evaluates expr in parallel i_max times. ParallelDo[expr, {i, i_max}] evaluates expr in parallel with the variable i successively taking on the ...
KernelObject[n, name, ...] represents a kernel available for parallel computing.
ParallelCombine[f, h[e_1, e_2, ...], comb] evaluates f[h[e_1, e_2, ...]] in parallel by distributing parts of the computation to all parallel kernels and combining the ...