I want to define two bounds and test whether: x is inside the domain, if its bigger or lower.
Sadly the “Include” component does not tell me whether x is larger or smaller…
Suppose: Domain: 2 to 4.
If x inside domain = 0
If x > 4 = -1
If x < 2 = 1
Hah! Thats a great one Ethan, very elegant. Uses the fact that comparisons evaluate to a 1 if true, or 0 if not true. Very clever. Much simpler than the approach I suggested.