(defn approx= "Return true if the absolute value of the difference between x and y is less than eps." [x y eps] (gc/< (abs (ga/- x y)) eps))
Comments top
No comments for approx=. Log in to add a comment.