ListInterpolation[array] constructs an InterpolatingFunction object that represents an approximate function that interpolates the array of values given. ...
Mathematica represents matrices and vectors using lists. Anything that is not a list Mathematica considers as a scalar. A vector in Mathematica consists of a list of scalars. ...
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 ...
TrigFactorList[expr] factors trigonometric functions in expr, yielding a list of lists containing trigonometric monomials and exponents.
Mathematica 's rich syntax uses different kinds of brackets and braces; familiarity with these aspects lets you read and program efficiently in Mathematica .
SampledSoundList[{a_1, a_2, ...}, r] is a sound primitive that represents a sound whose amplitude has levels a_i sampled r times a second.
Drop
(Built-in Mathematica Symbol) Drop[list, n] gives list with its first n elements dropped. Drop[list, -n] gives list with its last n elements dropped. Drop[list, {n}] gives list with its n\[Null]^th ...
Sow
(Built-in Mathematica Symbol) Sow[e] specifies that e should be collected by the nearest enclosing Reap. Sow[e, tag] specifies that e should be collected by the nearest enclosing Reap whose pattern ...
Sequence[expr_1, expr_2, ...] represents a sequence of arguments to be spliced automatically into any function.
FixedPointList[f, expr] generates a list giving the results of applying f repeatedly, starting with expr, until the results no longer change.