ImageTake[image, n] gives an image consisting of the first n rows of image.ImageTake[image, -n] gives an image consisting of the last n rows of image.ImageTake[image, {row_1, ...
TextRecognize[image] recognizes text in image and returns it as a string.
EdgeCount[g] gives a count of the number of edges in the graph g.EdgeCount[g, patt] gives a count of the number of edges that match the pattern patt.
KirchhoffMatrix[g] gives the Kirchhoff matrix of the graph g.
MapThread[f, {{a_1, a_2, ...}, {b_1, b_2, ...}, ...}] gives {f[a_1, b_1, ...], f[a_2, b_2, ...], ...}. MapThread[f, {expr_1, expr_2, ...}, n] applies f to the parts of the ...
SQLInsert inserts data into a database. An alternative, using raw SQL, is described in "Inserting Data with Raw SQL". If you find that the examples in this tutorial do not ...
This tutorial documents the XML representation of the user interface definition, GUIKitXML for short. This is a DTD representing the current GUIKit XML definitions. Use the ...
Many calculations involve solving systems of linear equations. In many cases, you will find it convenient to write down the equations explicitly, and then solve them using ...
Graph
(Built-in Mathematica Symbol) Graph[{e_1, e_2, ...}] yields a graph with edges e_j.Graph[{v 1, v 2, ...}, {e_1, e_2, ...}] yields the graph with vertices v_i and edges e_j. Graph[{..., w_i[v_i, ...], ...
All textual and graphical forms in Mathematica are ultimately represented in terms of nested collections of boxes. Typically the elements of these boxes correspond to objects ...