Skip to main content

hypot

functionv1.11

clojure.math/hypot

Available in:BBCLJ
(hypot [x y])
Returns sqrt(x^2 + y^2) without intermediate underflow or overflow. If x or y is ##Inf or ##-Inf => ##Inf If x or y is ##NaN and neither is ##Inf or ##-Inf => ##NaN See: https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html#hypot-double-double-

No examples yet. Be the first to add one!