Difference between revisions of "Sequence Operator"
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | = m .. n = | + | [[Category: Operators]] |
+ | [[Category: Functions that create lists]] | ||
+ | [[Category:Doc Status C]] <!-- For Lumina use, do not change --> | ||
+ | |||
+ | == m..n == | ||
− | Evaluates | + | 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, | + | This function does not [[Array Abstraction|array abstract]]. The expressions, «m» and «n», must evaluate to scalars. |
− | |||
− | |||
+ | == See Also == | ||
* [[Sequence]] | * [[Sequence]] | ||
+ | * [[Array Abstraction]] |
Revision as of 20:47, 17 March 2016
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
Enable comment auto-refresher