Compare two revisions of: Expression Syntax For Generic Applets

... ... @@ -29,7 +29,7 @@ It is basically a relation between the values of two Operations or function from
29 29 |Greater than| left>right|x > y| |
30 30 |Less than| left < right |x < y| |
31 31 |Greater than or equal| left >=right | x >= y| |
32 -|Less than or equal| left >=right | x <= y, abs(x)<3, sin(x)<0.5| |
32 +|Less than or equal| left <=right | x <= y, abs(x)<3, sin(x)<0.5| |
33 33 |Grouping brackets| [left>=right] | [abs(x)>3] AND [abs(x)<5] | use to group a relation |
34 34 |Negation| NOT [left > right] | NOT [x = y] | negate the relation in the brackets, returns true if x != y|
35 35 |AND | [cond1] AND [cond2] | [x>0] AND [x<3] | |
36 36