|
SOLUTIONS
|
BUILT-IN MATHEMATICA SYMBOL
ParallelProduct
ParallelProduct[expr, {i, imax}]
evaluates the product
in parallel.
ParallelProduct[expr, {i, imin, imax}]
starts with
.
ParallelProduct[expr, {i, imin, imax, di}]
uses steps
.
ParallelProduct[expr, {i, {i1, i2, ...}}]
uses successive values
,
, ....
ParallelProduct[expr, {i, imin, imax}, {j, jmin, jmax}, ...]
evaluates the multiple product
in parallel.
Details and OptionsDetails and Options
- ParallelProduct is a parallel version of Product, which automatically distributes partial multiplications among different kernels and processors.
- ParallelProduct will give the same results as Product, except for side effects during the computation.
- Parallelize[Product[expr, iter, ...]] is equivalent to ParallelProduct[expr, iter, ...].
- If an instance of ParallelProduct cannot be parallelized it is evaluated using Product.
- ParallelProduct takes the same Method option as Parallelize.
- ParallelProduct takes the same DistributedContexts option as ParallelTable.
New in 7 | Last modified in 8
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »

