Difference between revisions of "Manuals/calci/ELEMENTINARRAY"
Jump to navigation
Jump to search
(Created page with "element") |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | <div style="font-size:30px">'''ELEMENTINARRAY (Array,Value)'''</div><br/> | |
+ | |||
+ | *<math>Array</math> are any set of numbers. | ||
+ | *<math>Value</math> is any one number. | ||
+ | |||
+ | ==Description== | ||
+ | *This function returns the result for the function Element in Array. | ||
+ | *This will show the result as True or False. | ||
+ | *In <math>ELEMENTINARRAY (Array,Value)</math>,<math>Array</math> is the set of values and Value is the any number. | ||
+ | *When the mentioned Value is in appeared Array of values then the function will return the result as "True", otherwise "False". | ||
+ | *This function is used to capturing the mentioned Value with in the Array. | ||
+ | |||
+ | |||
+ | ==Examples== | ||
+ | #ELEMENTINARRAY([2,6,9,10,14,231,871,-87],10) = True | ||
+ | #ELEMENTINARRAY([12,18,20,34,100],-18) = False | ||
+ | #ELEMENTINARRAY([1.2,3.2,8.1,7,10,-10],8.01) = False | ||
+ | #ELEMENTINARRAY(["A","B","C","D","E"],"D") = True | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=F37rd-BpVOo&t=10s|280|center|Elements-Matrix}} | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/ISELEMENTLIKECOMPLEX | ISELEMENTLIKECOMPLEX ]] | ||
+ | *[[Manuals/calci/ELEMENTAT | ELEMENTAT ]] | ||
+ | *[[Manuals/calci/ELEMENTDIS | ELEMENTDIS ]] | ||
+ | |||
+ | ==References== | ||
+ | [https://www.w3schools.com/js/js_arrays.asp Element in Array] | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | |||
+ | *[[ Z3 | Z3 home ]] |
Latest revision as of 14:47, 10 January 2019
ELEMENTINARRAY (Array,Value)
- are any set of numbers.
- is any one number.
Description
- This function returns the result for the function Element in Array.
- This will show the result as True or False.
- In , is the set of values and Value is the any number.
- When the mentioned Value is in appeared Array of values then the function will return the result as "True", otherwise "False".
- This function is used to capturing the mentioned Value with in the Array.
Examples
- ELEMENTINARRAY([2,6,9,10,14,231,871,-87],10) = True
- ELEMENTINARRAY([12,18,20,34,100],-18) = False
- ELEMENTINARRAY([1.2,3.2,8.1,7,10,-10],8.01) = False
- ELEMENTINARRAY(["A","B","C","D","E"],"D") = True
Related Videos
See Also
References