Due to the complex inner workings of the Notation Package it is helpful to outline some of the more advanced features and structures of the Mathematica front end and how they ...
BoundedDiagram[{{a_1, b_1}, ...}, {{x_1, y_1}, ...}] yields the bounded Voronoi diagram of the points {x_1, y_1}, {x_2, y_2} ..., where the bound is the convex polygon formed ...
LinkRankMatrix[g] returns the link rank of the graph g, in the form of a sparse matrix. The link rank of an edge u -> v is defined as the PageRanks of u, divided by the ...
XBM
(Mathematica Import/Export Format) MIME type: image/x-xbitmap X Window bitmap format. Used in the X11 windowing system for storing icons, cursors, and other graphics resources. ASCII format. Stores a ...
MonomialList[poly] gives the list of all monomials in the polynomial poly.MonomialList[poly, {x_1, x_2, ...}] gives the list of monomials with respect to the variables x_i in ...
Set
(Built-in Mathematica Symbol) lhs = rhs evaluates rhs and assigns the result to be the value of lhs. From then on, lhs is replaced by rhs whenever it appears. {l_1, l_2, ...} = {r_1, r_2, ...} evaluates ...
ListLogPlot[{y_1, y_2, ...}] makes a log plot of the y_i, assumed to correspond to x coordinates 1, 2, ....ListLogPlot[{{x_1, y_1}, {x_2, y_2}, ...}] makes a log plot of the ...
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 ...
Graph
(Combinatorica Package Symbol) Graph[e, v, opts] represents a graph object where e is the list of edges annotated with graphics options, v is a list of vertices annotated with graphics options, and opts is ...
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.