Provided by: manpages-es_1.55-10_all bug

NOMBRE

       hypot - Función de distancia euclídea

SINOPSIS

       #include <math.h>

       double hypot(double x, double y);

DESCRIPCIÓN

       La  función hypot() devuelve el resultado de sqrt(x*x + y*y). Este valor es la longitud de
       la hipotenusa de un triángulo rectángulo cuyos lados miden x e y, o la distancia del punto
       (x, y) al origen.

CONFORME A

       SVID 3, BSD 4.3

VÉASE TAMBIÉN

       sqrt(3)