hypot

Autres langues

Langue: es

Autres versions - même langue

Version: 25 Junio 1993 (fedora - 25/11/07)

Section: 3 (Bibliothèques de fonctions)

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)