Manual Page Result
0
Command: hypot | Section: 3 | Source: UNIX v10 | File: hypot.3
HYPOT(3M) HYPOT(3M)
NAME
hypot, cabs - euclidean distance
SYNOPSIS
#include <math.h>
double hypot(x, y)
double x, y;
double cabs(z)
struct { double x, y; } z;
DESCRIPTION
Hypot and cabs return sqrt(x*x + y*y), taking precautions against un-
warranted overflows.
SEE ALSO
exp(3)
HYPOT(3M)