ListInterpolation[array] constructs an InterpolatingFunction object that represents an approximate function that interpolates the array of values given. ...
ListContourPlot3D[array] generates a contour plot from a three-dimensional array of values. ListContourPlot3D[{{x_1, y_1, z_1, f_1}, {x_2, y_2, z_2, f_2}, ...}] generates a ...
A possible way of working with permutations is by relating them to the reorderings of the elements of a list. This is the standard point of view in the combinatorial approach ...
ListSurfacePlot3D[{{x_1, y_1, z_1}, {x_2, y_2, z_2}, ...}] plots a three-dimensional surface constructed to fit the specified points.
TrigFactorList[expr] factors trigonometric functions in expr, yielding a list of lists containing trigonometric monomials and exponents.
FactorTermsList[poly] gives a list in which the first element is the overall numerical factor in poly, and the second element is the polynomial with the overall factor ...
Many computations are conveniently specified in terms of applying functions in parallel to many elements in a list. Mathematica provides a suite of elegant functional ...
StringReplaceList["string", s -> sp] or StringReplaceList["string", {s_1 -> sp_1, s_2 -> sp_2, ...}] gives a list of the strings obtained by replacing each individual ...
BinaryReadList["file"] reads all remaining bytes from a file, and returns them as a list of integers from 0 to 255. BinaryReadList["file", type] reads objects of the ...
NestWhileList[f, expr, test] generates a list of the results of applying f repeatedly, starting with expr, and continuing until applying test to the result no longer yields ...