Range
Usage
• Range[ ] generates the list {1, 2, ... , }. • Range[ , ] generates the list { , ... , }. Range[ , , di] uses step di.
Notes
• Example: Range[4]  . • The arguments to Range need not be integers. • Range starts from  , and successively adds increments of di until the result is greater than  . • Range[0, 1, .3]  . • Range[x, x+2]  . • Range uses the standard Mathematica iteration specification, as applied to a single variable. • New in Version 1.
|