ListVectorDensityPlot[array] generates a vector plot from a 2D array of vector and scalar field values {{vx_ij, vy_ij}, s_ij}. ListVectorDensityPlot[{{{x_1, y_1}, {{vx_1, ...
Streams
(Built-in Mathematica Symbol) Streams[] gives a list of all streams that are currently open. Streams["name"] lists only streams with the specified name.
ListStreamPlot[array] generates a stream plot from an array of vector field values.ListStreamPlot[{{{x_1, y_1}, {vx_1, vy_1}}, ...}] generates a stream plot from vector field ...
Rest
(Built-in Mathematica Symbol) Rest[expr] gives expr with the first element removed.
SplitBy
(Built-in Mathematica Symbol) SplitBy[list, f] splits list into sublists consisting of runs of successive elements that give the same value when f is applied.SplitBy[list, {f_1, f_2, ...}] recursively ...
MatrixQ
(Built-in Mathematica Symbol) MatrixQ[expr] gives True if expr is a list of lists or a two-dimensional SparseArray object that can represent a matrix, and gives False otherwise. MatrixQ[expr, test] gives ...
Names
(Built-in Mathematica Symbol) Names["string"] gives a list of the names of symbols which match the string. Names[patt] gives a list of names matching the arbitrary string pattern patt.
PaneSelector[{v_1 -> expr_1, v_2 -> expr_2, ...}, v] represents an object that displays as a pane containing the expr_i for which v_i is equal to v.
Total
(Built-in Mathematica Symbol) Total[list] gives the total of the elements in list. Total[list, n] totals all elements down to level n. Total[list, {n}] totals elements at level n. Total[list, {n_1, n_2}] ...
Accumulate[list] gives a list of the successive accumulated totals of elements in list.