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 ...
MessageDialog[expr] puts up a standard message dialog that displays expr together with an OK button.MessageDialog[expr, {lbl_1 :> act_1, lbl_2 :> act_2, ...}] includes ...
BreadthFirstScan[g, s, {"event_1" -> f_1, "event_2" -> f_2, ...}] performs a breadth-first scan (bfs) of the graph g starting at the vertex s and evaluates f_i whenever ...
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. ...
$NewSymbol is a global variable which, if set, is applied to the name and context of each new symbol that Mathematica creates.
Of the many ways images can be loaded into a Mathematica notebook, Import is the main method used to access image files on your local computer or at a remote location. The ...
Break
(Built-in Mathematica Symbol) Break[] exits the nearest enclosing Do, For, or While.
For
(Built-in Mathematica Symbol) For[start, test, incr, body] executes start, then repeatedly evaluates body and incr until test fails to give True.
ExpressionCell[expr] gives an expression cell that can appear in a Mathematica notebook. ExpressionCell[expr, " style"] gives an expression cell with the specified style.
FileBaseName["file"] gives the base name for a file without its extension.