Logo

Programming-Idioms

  • Ada
  • JS
  • Fortran

Idiom #200 Return hypotenuse

Compute the hypotenuse h of the triangle where the sides adjacent to the square angle have lengths x and y.

h = hypot(x,y)

Requires Fortran 2008
const h = Math.hypot(x, y);
var h = Math.sqrt(x*x + y*y);

Works even in older browsers.
#include <cmath>
auto h = std::hypot(x, y);

h, x, y may have types float, double, long double

New implementation...
< >
Bart