DifferenceDelta[f, i] gives the discrete difference \[DifferenceDelta]_i f = f(i + 1) - f(i).DifferenceDelta[f, {i, n}] gives the multiple difference DifferenceDelta[f, {i, ...
BattleLemarieWavelet[] represents the Battle-Lemarié wavelet of order 3.BattleLemarieWavelet[n] represents the Battle-Lemarié wavelet of order n evaluated on equally spaced ...
CoifletWavelet[] represents a Coiflet wavelet of order 2.CoifletWavelet[n] represents a Coiflet wavelet of order n.
ProductLog[z] gives the principal solution for w in z == w e^w. ProductLog[k, z] gives the k\[Null]^th solution.
SymletWavelet[] represents the Symlet wavelet of order 4.SymletWavelet[n] represents the Symlet wavelet of order n.
And
(Built-in Mathematica Symbol) e_1 && e_2 && ... is the logical AND function. It evaluates its arguments in order, giving False immediately if any of them are False, and True if they are all True.
Cell
(Built-in Mathematica Symbol) Cell[contents] is the low-level representation of a cell inside a Mathematica notebook. Cell[contents, " style"] represents a cell in the specified style.
Export
(Built-in Mathematica Symbol) Export["file. ext", expr] exports data to a file, converting it to the format corresponding to the file extension ext. Export[file, expr, " format"] exports data in the ...
Or
(Built-in Mathematica Symbol) e_1 || e_2 || ... is the logical OR function. It evaluates its arguments in order, giving True immediately if any of them are True, and False if they are all False.
Scan
(Built-in Mathematica Symbol) Scan[f, expr] evaluates f applied to each element of expr in turn. Scan[f, expr, levelspec] applies f to parts of expr specified by levelspec.