Difference between revisions of "Manuals/calci/ISSAME"
Jump to navigation
Jump to search
| Line 19: | Line 19: | ||
#=ISSAME(["a"],["a"])= true | #=ISSAME(["a"],["a"])= true | ||
#=ISSAME(["a"],["a","1","b"]) = false | #=ISSAME(["a"],["a","1","b"]) = false | ||
| + | |||
| + | |||
| + | ==See Also== | ||
| + | |||
| + | *[[Manuals/calci/ISSUBSET | ISSUBSET ]] | ||
| + | *[[Manuals/calci/ISSUPERSET | ISSUPERSET ]] | ||
| + | |||
| + | |||
| + | ==References== | ||
| + | *[https://en.wikipedia.org/wiki/Array Array] | ||
| + | |||
| + | |||
| + | *[[Z_API_Functions | List of Main Z Functions]] | ||
| + | *[[ Z3 | Z3 home ]] | ||
Revision as of 19:56, 15 May 2017
ISSAME(GivenSetOneArray,GivenSetTwoArray)
- where and are two arrays to be compared.
Description
- ISSAME function can be used to check the given two arrays are same or not.
- This function is one of the function in ISFUNCTIONS group.
- The IS FUNCTION is also known as Data Information Functions, Data Inspection Functions or Data-testing Functions.
- This function gives the result as TRUE or FALSE.
- The result is TRUE when the two arrays are same. Else the result is false..
- The argument can be blank, or it can contain data such as text,numbers,error values,logical values or any equations.
- Text input should be give in quotes.
Examples
- =ISSAME([1,2,3,4],[1,2,3,4]) = true
- =ISSAME([1,2],[1,2,3,4]) = false
- =ISSAME(["a"],["a"])= true
- =ISSAME(["a"],["a","1","b"]) = false
See Also
References