Difference between revisions of "Manuals/calci/NUMS"
Jump to navigation
Jump to search
(Created page with "nums") |
|||
Line 1: | Line 1: | ||
− | + | <div style="font-size:30px">'''NUMS (Limit,Start)'''</div><br/> | |
+ | |||
+ | *<math>Limit</math> and <math>Start</math> are any real numbers. | ||
+ | |||
+ | ==Description== | ||
+ | *This function shows numbers increasing by 1 with in the given limit. | ||
+ | *In <math>NUMS(Limit,Start)</math>,<math>Limit</math> is the maximum number which is not included in the list. | ||
+ | *<math>Start</math> is the minimum number to start the sequence. | ||
+ | *Numbers are arithmetical value which are containing positive numbers,negative numbers and including zero. | ||
+ | *So this function including the minimum number but not including the maximum number. | ||
+ | *Also limit and start both also in Integers function will return the result in Integers. | ||
+ | *Suppose start number is in decimal then function will return the result also in decimal increasing with 1. | ||
+ | |||
+ | ==Examples== | ||
+ | #NUMS(90,80) = 80 81 82 83 84 85 86 87 88 89 | ||
+ | #NUMS(21.3,15) = 15 16 17 18 19 20 21 | ||
+ | #NUMS(10,-6) = -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 8 9 | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/INT | INT ]] | ||
+ | *[[Manuals/calci/RANDINT | RANDINT ]] | ||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | *[[ Z3 | Z3 home ]] | ||
+ | |||
+ | ==References== | ||
+ | *[http://en.wikipedia.org/wiki/Integer Integer] | ||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | *[[ Z3 | Z3 home ]] |
Revision as of 13:26, 12 April 2017
NUMS (Limit,Start)
- and are any real numbers.
Description
- This function shows numbers increasing by 1 with in the given limit.
- In , is the maximum number which is not included in the list.
- is the minimum number to start the sequence.
- Numbers are arithmetical value which are containing positive numbers,negative numbers and including zero.
- So this function including the minimum number but not including the maximum number.
- Also limit and start both also in Integers function will return the result in Integers.
- Suppose start number is in decimal then function will return the result also in decimal increasing with 1.
Examples
- NUMS(90,80) = 80 81 82 83 84 85 86 87 88 89
- NUMS(21.3,15) = 15 16 17 18 19 20 21
- NUMS(10,-6) = -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 8 9