Shorthand notations are a part of Mathematica 's rich syntax system that allows multiple ways to feed arguments to functions. In addition to creating compact code, using ...
Item
(Built-in Mathematica Symbol) Item[expr, options] represents an item within constructs such as Grid, Overlay, and Manipulate that displays with expr as the content, and with the specified options applied ...
The ability to generate pseudorandom numbers is important for simulating events, estimating probabilities and other quantities, making randomized assignments or selections, ...
FoldList[f, x, {a, b, ...}] gives {x, f[x, a], f[f[x, a], b], ...}.
MapIndexed[f, expr] applies f to the elements of expr, giving the part specification of each element as a second argument to f. MapIndexed[f, expr, levelspec] applies f to ...
Expressions are the main type of data in Mathematica. Expressions can be written in the form h[e_1,e_2,…]. The object h is known generically as the head of the expression. ...
"Calling .NET from Mathematica" describes using .NET/Link to allow you to call from Mathematica into .NET, thereby extending the Mathematica environment to include the ...
The Mathematica functions Reduce, Resolve, and FindInstance allow you to solve a wide variety of problems that can be expressed in terms of equations and inequalities. The ...
MinCut
(Graph Utilities Package Symbol) MinCut[g, k] partitions the undirected graph g into k parts where the number of edge cuts is approximately minimized.
Distribute[f[x_1, x_2, ...]] distributes f over Plus appearing in any of the x_i. Distribute[expr, g] distributes over g. Distribute[expr, g, f] performs the distribution ...