VertexShape is an option and property for Graph and related functions that specifies the graphics used for vertices.
Product
(Built-in Mathematica Symbol) Product[f, {i, i_max}] evaluates the product \[Product]i = 1 i_max f. Product[f, {i, i_min, i_max}] starts with i = i_min. Product[f, {i, i_min, i_max, di}] uses steps di. ...
Find
(Built-in Mathematica Symbol) Find[stream, " text"] finds the first line in an input stream that contains the specified string. Find[stream, {"text_1", "text_2", ...}] finds the first line that contains ...
CompleteGraph[n] gives the complete graph with n vertices K_n.CompleteGraph[{n_1, n_2, ..., n_k}] gives the complete k-partite graph with n_1 + n_2 + \[CenterEllipsis] + n_k ...
HararyGraph[k, n] generates the minimal k-connected graph on n vertices H k, n.
ButterflyGraph[n] gives the order-n butterfly graph. ButterflyGraph[n, b] gives the base-b order-n butterfly graph.
HypercubeGraph[n] gives the n-dimensional hypercube graph Q_n.
ImageApply[f, image] applies the function f to the list of channel values for each pixel in image.
WeightedAdjacencyGraph[wmat] gives the graph with weighted adjacency matrix wmat.WeightedAdjacencyGraph[{v_1, v_2, ...}, wmat] gives the graph with vertices v_i and weighted ...
This example displays a dialog for finding prime numbers and alerting the user when any entered expression evaluates to a prime number. The modal version also shows how ...