Difference between revisions of "Manuals/calci/EQ"
Jump to navigation
Jump to search
(Created page with "eq") |
|||
Line 1: | Line 1: | ||
− | eq | + | <div style="font-size:30px">'''EQ (A,B)'''</div><br/> |
+ | *<A> and <B> are any real numbers. | ||
+ | |||
+ | ==Descreiption== | ||
+ | *This function determines the equality of two numbers. | ||
+ | *In <math>EQ(A,B)</math>,<math>A</math> and <math>B</math>are any real and Imaginary number. | ||
+ | *EQ will return the result as "TRUE" when A equals B. | ||
+ | *EQ will return the result as "FALSE" when A not equals B. | ||
+ | *EQ compares both real and imaginary parts A and B. | ||
+ | *This function will check for alphabets and special characters also. | ||
+ | |||
+ | ==Examples== | ||
+ | #EQ(90,90) = true | ||
+ | #EQ(-123,123) = false | ||
+ | #EQ(14.23,14.02) = false | ||
+ | #EQ(2/3,6/9) = true | ||
+ | #EQ("june","june") = true | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/FEQ | FEQ]] | ||
+ | *[[Manuals/calci/MEQUAL | MEQUAL ]] | ||
+ | *[[Manuals/calci/EQS | EQS]] | ||
+ | |||
+ | ==References== | ||
+ | [https://api.jquery.com/eq/ Equal] |
Revision as of 13:53, 8 March 2017
EQ (A,B)
- <A> and are any real numbers.
Descreiption
- This function determines the equality of two numbers.
- In , and are any real and Imaginary number.
- EQ will return the result as "TRUE" when A equals B.
- EQ will return the result as "FALSE" when A not equals B.
- EQ compares both real and imaginary parts A and B.
- This function will check for alphabets and special characters also.
Examples
- EQ(90,90) = true
- EQ(-123,123) = false
- EQ(14.23,14.02) = false
- EQ(2/3,6/9) = true
- EQ("june","june") = true