Difference between revisions of "Sequence Operator"

 
m (adding doc status category)
Line 1: Line 1:
 
= m .. n =
 
= m .. n =
 
+
[[Category:Doc Status C]] <!-- For Lumina use, do not change -->
 +
 
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).
 
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).
  

Revision as of 04:00, 25 April 2007

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.