Difference between revisions of "Manuals/calci/IN"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
<div style="font-size:30px">'''IN()'''</div><br/> | <div style="font-size:30px">'''IN()'''</div><br/> | ||
− | + | *IN() is the tester function of with in array values. | |
==Description== | ==Description== | ||
Line 14: | Line 14: | ||
# IN(3.1,[3.001,3.2,3.01,3.9]) = false | # IN(3.1,[3.001,3.2,3.01,3.9]) = false | ||
# IN("j",["a","j","i","p"]) = true | # IN("j",["a","j","i","p"]) = true | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=F37rd-BpVOo&t=10s|280|center|Elements-Matrix}} | ||
==See Also== | ==See Also== |
Latest revision as of 14:14, 4 March 2019
IN()
- IN() is the tester function of with in array values.
Description
IN()
- The first parameter is the value to test and the second parameter is the set of array values.
- This function will return the result as TRUE when the given number is with in given set of values.
- Also will return the result as FALSE when the given number is not with in given set of values.
Examples
- IN(3,[1,4,9]) = false
- IN(-4,[-10,-9,-8,-7,-6,-5,-4,-3,-2,-1]) = true
- IN(3.1,[3.001,3.2,3.01,3.9]) = false
- IN("j",["a","j","i","p"]) = true
Related Videos
See Also
References