IPnom Home • Manuals • FreeBSD

 FreeBSD Man Pages

Man Sections:Commands (1)System Calls (2)Library Functions (3)Device Drivers (4)File Formats (5)Miscellaneous (7)System Utilities (8)
Keyword Live Search (10 results max):
 Type in part of a command in the search box.
 


hypot(3)

NAME

     hypot, hypotf, cabs, cabsf -- Euclidean distance and complex absolute
     value functions


LIBRARY

     Math Library (libm, -lm)


SYNOPSIS

     #include <math.h>

     double
     hypot(double x, double y);

     float
     hypotf(float x, float y);

     #include <complex.h>

     double
     cabs(double complex z);

     float
     cabsf(float complex z);


DESCRIPTION

     The hypot() and hypotf() functions compute the sqrt(x*x+y*y) in such a
     way that underflow will not happen, and overflow occurs only if the final
     result deserves it.  The cabs() and cabsf() functions compute the complex
     absolute value of z.

     hypot(infinity, v) = hypot(v, infinity) = +infinity for all v, including
     NaN.


ERROR (due to Roundoff, etc.)

     Below 0.97 ulps.  Consequently hypot(5.0, 12.0) = 13.0 exactly; in gen-
     eral, hypot and cabs return an integer whenever an integer might be
     expected.

     The same cannot be said for the shorter and faster version of hypot and
     cabs that is provided in the comments in cabs.c; its error can exceed 1.2
     ulps.


NOTES

     As might be expected, hypot(v, NaN) and hypot(NaN, v) are NaN for all
     finite v.	But programmers might be surprised at first to discover that
     hypot(+-infinity, NaN) = +infinity.  This is intentional; it happens
     because hypot(infinity, v) = +infinity for all v, finite or infinite.
     Hence hypot(infinity, v) is independent of v.  Unlike the reserved oper-
     and fault on a VAX, the IEEE NaN is designed to disappear when it turns
     out to be irrelevant, as it does in hypot(infinity, NaN).


SEE ALSO

     math(3), sqrt(3)


HISTORY

     Both a hypot() function and a cabs() function appeared in Version 7 AT&T
     UNIX.

SPONSORED LINKS




Man(1) output converted with man2html , sed , awk