Mathematica supports operations on matrices of any size and has a range of input methods appropriate for different needs, from small formatted matrices via keyboard or ...
Mathematica 's rich syntax uses different kinds of brackets and braces; familiarity with these aspects lets you read and program efficiently in Mathematica .
JSON
(Mathematica Import/Export Format) MIME type: application/json. Data interchange format. Commonly used in web service implementations. Contains collections of unordered name-value pairs or ordered values. JSON ...
AffineTransform[m] gives a TransformationFunction that represents an affine transform that maps r to m.r. AffineTransform[{m, v}] gives an affine transform that maps r to m.r ...
Assumptions is an option for functions such as Simplify, Refine, and Integrate that specifies default assumptions to be made about symbolic quantities.
BitAnd
(Built-in Mathematica Symbol) BitAnd[n_1, n_2, ...] gives the bitwise AND of the integers n_i.
BitXor
(Built-in Mathematica Symbol) BitXor[n_1, n_2, ...] gives the bitwise XOR of the integers n_i.
ClusteringComponents[array] gives an array in which each element of array is replaced by an integer index representing the cluster in which the element ...
CreatePalette[expr] creates a palette notebook containing expr, and opens it in the front end.CreatePalette[{expr_1, expr_2, ...}] creates and opens a palette notebook ...
If
(Built-in Mathematica Symbol) If[condition, t, f] gives t if condition evaluates to True, and f if it evaluates to False. If[condition, t, f, u] gives u if condition evaluates to neither True nor False.