p .. or Repeated[p] is a pattern object that represents a sequence of one or more expressions, each matching p. Repeated[p, max] represents up to max expressions matching ...
Replace
(Built-in Mathematica Symbol) Replace[expr, rules] applies a rule or list of rules in an attempt to transform the entire expression expr. Replace[expr, rules, levelspec] applies rules to parts of expr ...
lhs :> rhs or lhs :> rhs represents a rule that transforms lhs to rhs, evaluating rhs only after the rule is used.
SampleDepth is an option for sound primitives that specifies how many bits should be used to encode sound amplitude levels.
Saveable is an option for notebooks that specifies whether a notebook can be saved.
Save
(Built-in Mathematica Symbol) Save["filename", symbol] appends definitions associated with the specified symbol to a file. Save["filename", " form"] appends definitions associated with all symbols whose ...
SawtoothWave[x] gives a sawtooth wave that varies from 0 to 1 with unit period.SawtoothWave[{min, max}, x] gives a sawtooth wave that varies from min to max with unit period.
SetOptions[s, name_1 -> value_1, name_2 -> value_2, ...] sets the specified default options for a symbol s. SetOptions[stream, ...] or SetOptions["name", ...] sets options ...
Show
(Built-in Mathematica Symbol) Show[graphics, options] shows graphics with the specified options added. Show[g_1, g_2, ...] shows several graphics combined.
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 ...