TabView
(Built-in Mathematica Symbol) TabView[{lbl_1 -> expr_1, lbl_2 -> expr_2, ...}] represents an object in which clicking the tab with label lbl_i displays expr_i. TabView[{lbl_1 -> expr_1, lbl_2 -> expr_2, ...
AstronomicalData["name", " property"] gives the value of the specified property of the astronomical object with the specified name.AstronomicalData["name", {"property", ...
Special forms for some common symbols. This is equivalent to Sin[60Degree]. Here is the long form of the input.
GraphEdit[] opens an interactive graph editor.GraphEdit[g] plots the graph g in the interactive graph editor.
DiscreteShift[f, i] gives the discrete shift DiscreteShift[f(i), i] == f(i + 1). DiscreteShift[f, {i, n}] gives the multiple shift \[DiscreteShift]_i^n\ f.DiscreteShift[f, ...
Module
(Built-in Mathematica Symbol) Module[{x, y, ...}, expr] specifies that occurrences of the symbols x, y, ... in expr should be treated as local. Module[{x = x_0, ...}, expr] defines initial values for x, ...
The general principle that Mathematica follows in evaluating expressions is to go on applying transformation rules until the expressions no longer change. This means, for ...
Function[body] or body & is a pure function. The formal parameters are # (or #1), #2, etc. Function[x, body] is a pure function with a single formal parameter x. ...
lhs := rhs assigns rhs to be the delayed value of lhs. rhs is maintained in an unevaluated form. When lhs appears, it is replaced by rhs, evaluated afresh each time.
AdjacencyMatrix[g] gives the SparseArray object representing the graph g.AdjacencyMatrix[g, n] gives the SparseArray object representing the graph g, adding additional ...