Difference between revisions of "Manuals/calci/EQS"
Jump to navigation
Jump to search
(Created page with "eqs") |
|||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | + | <div style="font-size:30px">'''EQS (A,B)'''</div><br/> | |
+ | *<math>A</math> and <math>B</math> are any real numbers. | ||
+ | |||
+ | ==Description== | ||
+ | *This function determines the equality of two numbers. | ||
+ | *In <math>EQS(A,B)</math>,<math>A</math> and <math>B</math>are any real and Imaginary number. | ||
+ | *EQS will return the result as "TRUE" when A equals B. | ||
+ | *EQS will return the result as "FALSE" when A not equals B. | ||
+ | *EQS compares both real and imaginary parts A and B. | ||
+ | *This function will check for alphabets and special characters also. | ||
+ | |||
+ | All comparison functions ( [[Manuals/calci/LT |LT]], [[Manuals/calci/LTE |LTE]], [[Manuals/calci/GT |GT]], [[Manuals/calci/GTE |GTE]], [[Manuals/calci/EQ |EQ]], [[Manuals/calci/NE |NE]], [[Manuals/calci/EQS |EQS]], [[Manuals/calci/NES |NES]], [[Manuals/calci/FEQ |FEQ]]) will assume B as 0, if not provided. So EQ(10) will be treated as EQ(10,0) | ||
+ | |||
+ | ==Examples== | ||
+ | #EQS(23,23.3) = false | ||
+ | #EQS(-65,-65) = true | ||
+ | #EQS(7/8,21/24) = true | ||
+ | #EQS("G","B") = false | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=Sq-vDGU0LhM|280|center|Equal}} | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/FEQ | FEQ]] | ||
+ | *[[Manuals/calci/MEQUAL | MEQUAL ]] | ||
+ | *[[Manuals/calci/EQ | EQ]] | ||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | *[[Z3 | Z3 home ]] | ||
+ | |||
+ | ==References== | ||
+ | [https://en.wikipedia.org/wiki/Equality_(mathematics) Equality] | ||
+ | |||
+ | [https://api.jquery.com/eq/ Equal] | ||
+ | |||
+ | |||
+ | |||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | |||
+ | *[[ Z3 | Z3 home ]] |
Latest revision as of 21:59, 21 March 2024
EQS (A,B)
- and are any real numbers.
Description
- This function determines the equality of two numbers.
- In , and are any real and Imaginary number.
- EQS will return the result as "TRUE" when A equals B.
- EQS will return the result as "FALSE" when A not equals B.
- EQS compares both real and imaginary parts A and B.
- This function will check for alphabets and special characters also.
All comparison functions ( LT, LTE, GT, GTE, EQ, NE, EQS, NES, FEQ) will assume B as 0, if not provided. So EQ(10) will be treated as EQ(10,0)
Examples
- EQS(23,23.3) = false
- EQS(-65,-65) = true
- EQS(7/8,21/24) = true
- EQS("G","B") = false
Related Videos
See Also
References