hypot

Autres langues

Langue: pl

Autres versions - même langue

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

Section: 3 (Bibliothèques de fonctions)

NAZWA

hypot - funkcja odległości euklidesowej

SKŁADNIA

 #include <math.h>
 
 double hypot(double x, double y);
 

OPIS

Funkcja hypot() zwraca sqrt(x*x + y*y). Jest to długość przeciwprostokątnej trójkąta prostokątnego o bokach długości x i y, lub odległość punktu (x, y) od początku układu współrzędnych.

ZGODNE Z

SVID 3, BSD 4.3

ZOBACZ TAKŻE

sqrt(3)