Logo

Programming-Idioms

  • Haskell
  • Ruby
  • Pascal
  • Go
  • Php

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)

// before PHP 4.1
$h = sqrt($x*$x + $y*$y);
hypo x y = sqrt $ x**2 + y**2
include Math
h = hypot(x, y)
uses math;
h := hypot(x,y);
import "math"
h := math.Hypot(x, y)
#include <cmath>
auto h = std::hypot(x, y);

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

New implementation...
< >
Bart