<div dir="ltr"><div>I think these would be useful and easy to implement.</div><div><br></div><div>    greater_close(a, b) = greater_equal(a, b) | isclose(a, b)</div><div>    less_close(a, b) = less_equal(a, b) | isclose(a, b)</div><div>    greater_no_close = greater(a, b) & ~isclose(a, b)</div><div>    less_no_close = less(a, b) & ~isclose(a, b)</div><div>    </div><div>The results are element-wise, just like the original functions.</div><div><br></div><div>I'm not sure if it is useful enough to be a part of numpy. If so, I will try to implement them and make a pull request. </div></div>