Timing
(Built-in Mathematica Symbol) Timing[expr] evaluates expr, and returns a list of the time in seconds used, together with the result obtained.
Mathematica contains a very powerful system of integration. It can do almost any integral that can be done in terms of standard mathematical functions.
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, ...
Mathematica gives you the ability to fine-tune the level of detail for your plots. To get a rough sketch of a plot, you can tell Mathematica to plot fewer points. The more ...
TimeConstrained[expr, t] evaluates expr, stopping after t seconds. TimeConstrained[expr, t, failexpr] returns failexpr if the time constraint is not met.
WaitAll
(Built-in Mathematica Symbol) WaitAll[expr] waits for all concurrent evaluations represented by EvaluationObject expressions in expr to finish, then returns the resulting expression obtained.
Monitor
(Built-in Mathematica Symbol) Monitor[expr, mon] generates a temporary monitor cell in which the continually updated current value of mon is displayed during the course of evaluation of expr.
Mathematica's highly optimized architecture makes it easy to create programs that are both elegant and efficient. Its symbolic character lets you immediately run and test ...
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 = ...
RuntimeAttributes is an option for Compile that specifies attributes for the compiled function it creates.