icon Top 9 categories map      RocketAware > man pages >

hypot(3)

Tips: Browse or Search all pages for efficient awareness of more than 6000 of the most popular reusable and open source applications, functions, libraries, and FAQs.


The "RKT couplings" below include links to source code, updates, additional information, advice, FAQs, and overviews.


Home

Search all pages


Subjects

By activity
Professions, Sciences, Humanities, Business, ...

User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...

Text Strings
Conversions, tests, processing, manipulation,...

Math
Integer, Floating point, Matrix, Statistics, Boolean, ...

Processing
Algorithms, Memory, Process control, Debugging, ...

Stored Data
Data storage, Integrity, Encryption, Compression, ...

Communications
Networks, protocols, Interprocess, Remote, Client Server, ...

Hard World
Timing, Calendar and Clock, Audio, Video, Printer, Controls...

File System
Management, Filtering, File & Directory access, Viewers, ...

    

RocketLink!--> Man page versions: OpenBSD FreeBSD RedHat Others



HYPOT(3)                  OpenBSD Programmer's Manual                 HYPOT(3)

NAME
     hypot, hypotf, cabs, cabsf - euclidean distance and complex absolute val-
     ue functions



SYNOPSIS
     #include <math.h>

     double
     hypot(double x, double y);

     float
     hypotf(float x, float y);

     double
     cabs(struct complex { double x; double y; } z);

     float
     cabsf(struct complex { double x; double y; } z);

DESCRIPTION
     The hypot() and cabs() functions computes the sqrt(x*x+y*y) in such a way
     that underflow will not happen, and overflow occurs only if the final re-
     sult deserves it.

     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 gener-
     al, hypot and cabs return an integer whenever an integer might be expect-
     ed.

     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; with "reserved operand" in place of "NaN", the same is true on
     a VAX. But programmers on machines other than a VAX (if has no infinity)
     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 in-
     dependent of v. Unlike the reserved operand 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).

BUGS
     The cabs() and cabsf() functions use structures that are not defined in
     any header and need to be defined by the user. As such they cannot be
     prototyped properly.

SEE ALSO
     math(3),  sqrt(3)

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

OpenBSD 2.6                       May 6, 1991                                1

Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY
SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts
Institute of Technology, Free Software Foundation, FreeBSD Inc., and others.



(Corrections, notes, and links courtesy of RocketAware.com)


[Detailed Topics]
FreeBSD Sources for hypot(3) functions
FreeBSD Sources for hypot(3) functions
OpenBSD sources for hypot(3)


[Overview Topics]

Up to: Floating point math - Floating point math (including complex numbers)
Up to: Trigonometric - Trigonometric functions (sin, cos, tan, et al)


RocketLink!--> Man page versions: OpenBSD FreeBSD RedHat Others






Rapid-Links: Search | About | Comments | Submit Path: RocketAware > man pages > hypot.3/
RocketAware.com is a service of Mib Software
Copyright 1999, Forrest J. Cavalier III. All Rights Reserved.
We welcome submissions and comments