Images are an important standard data structure, tightly integrated with the Mathematica front end and kernel. Image objects are created by default when you import any file ...
Shorthand notations are a part of Mathematica 's rich syntax system that allows multiple ways to feed arguments to functions. In addition to creating compact code, using ...
GraphicsColumn[{g_1, g_2, ...}] generates a graphic in which the g_i are laid out in a column, with g_1 above g_2, etc. GraphicsColumn[list, alignment] aligns each element ...
When summarizing data, it is often useful to analyze it by subgroup. For example, crop yields could be categorized by seed variety, or average patient recovery time by ...
Mathematica provides functions that allow users to write their own file format converters and integrate them with the Mathematica Import and Export framework. You can ...
Computational geometry is the study of efficient algorithms for solving geometric problems. The nearest neighbor problem involves identifying one point, out of a set of ...
ChebyshevU[n, x] gives the Chebyshev polynomial of the second kind U_n (x).
ParallelTable[expr, {i_max}] generates in parallel a list of i_max copies of expr.ParallelTable[expr, {i, i_max}] generates in parallel a list of the values of expr when i ...
"Sound" describes how you can take functions and lists of data and produce sounds from them. Here we discuss how sounds are represented in Mathematica. Mathematica treats ...
Outer
(Built-in Mathematica Symbol) Outer[f, list_1, list_2, ...] gives the generalized outer product of the list_i, forming all possible combinations of the lowest-level elements in each of them, and feeding ...