Sequence Operator

Revision as of 17:07, 17 April 2007 by Lchrisman (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

m .. n

Evaluates m and n and returns a sequence from m to n in increments of 1, or in increments of -1 when n<m. The result is a list. Equivalent to Sequence(m,n).

This function does not array abstract. The expressions, m and n, must evaluate to scalars.

See Also

Comments


You are not allowed to post comments.