Ways to construct nested lists. This generates a table corresponding to a 2×3 nested list. This generates an array corresponding to the same nested list.
MapAt
(Built-in Mathematica Symbol) MapAt[f, expr, n] applies f to the element at position n in expr. If n is negative, the position is counted from the end. MapAt[f, expr, {i, j, ...}] applies f to the part of ...
EmitSound[snd] emits the sound snd when evaluated. EmitSound[{snd_1, snd_2, ...}] emits each of the sounds snd_i in sequence.
RotateLeft[expr, n] cycles the elements in expr n positions to the left. RotateLeft[expr] cycles one position to the left. RotateLeft[expr, {n_1, n_2, ...}] cycles elements ...
RotateRight[expr, n] cycles the elements in expr n positions to the right. RotateRight[expr] cycles one position to the right. RotateRight[expr, {n_1, n_2, ...}] cycles ...
FoldList[f, x, {a, b, ...}] gives {x, f[x, a], f[f[x, a], b], ...}.
Suppose two functions have the same domain and different ranges. Plotting them together using Plot uses the same scale for the y values. To compare the functions, TwoAxisPlot ...
Prolog
(Built-in Mathematica Symbol) Prolog is an option for graphics functions which gives a list of graphics primitives to be rendered before the main part of the graphics is rendered.
ImageCorrespondingPoints[image_1, image_2] finds a set of matching interest points in image_1 and image_2 and returns their pixel coordinates.
ImageKeypoints[image] finds key features in image and returns their coordinates.ImageKeypoints[image, prop] gives the specified property prop for each keypoint.