hypot.3 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. .\" Copyright (c) 1985, 1991 Regents of the University of California.
  2. .\" All rights reserved.
  3. .\"
  4. .\" Redistribution and use in source and binary forms, with or without
  5. .\" modification, are permitted provided that the following conditions
  6. .\" are met:
  7. .\" 1. Redistributions of source code must retain the above copyright
  8. .\" notice, this list of conditions and the following disclaimer.
  9. .\" 2. Redistributions in binary form must reproduce the above copyright
  10. .\" notice, this list of conditions and the following disclaimer in the
  11. .\" documentation and/or other materials provided with the distribution.
  12. .\" 4. Neither the name of the University nor the names of its contributors
  13. .\" may be used to endorse or promote products derived from this software
  14. .\" without specific prior written permission.
  15. .\"
  16. .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  17. .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  20. .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. .\" SUCH DAMAGE.
  27. .\"
  28. .\" from: @(#)hypot.3 6.7 (Berkeley) 5/6/91
  29. .\" $FreeBSD: src/lib/msun/man/hypot.3,v 1.18 2010/05/13 12:08:11 uqs Exp $
  30. .\"
  31. .Dd March 30, 2008
  32. .Dt HYPOT 3
  33. .Os
  34. .Sh NAME
  35. .Nm hypot ,
  36. .Nm hypotf ,
  37. .Nm hypotl ,
  38. .Nm cabs ,
  39. .Nm cabsf ,
  40. .Nm cabsl
  41. .Nd Euclidean distance and complex absolute value functions
  42. .Sh LIBRARY
  43. .Lb libm
  44. .Sh SYNOPSIS
  45. .In math.h
  46. .Ft double
  47. .Fn hypot "double x" "double y"
  48. .Ft float
  49. .Fn hypotf "float x" "float y"
  50. .Ft "long double"
  51. .Fn hypotl "long double x" "long double y"
  52. .In complex.h
  53. .Ft double
  54. .Fn cabs "double complex z"
  55. .Ft float
  56. .Fn cabsf "float complex z"
  57. .Ft "long double"
  58. .Fn cabsl "long double complex z"
  59. .Sh DESCRIPTION
  60. The
  61. .Fn hypot ,
  62. .Fn hypotf
  63. and
  64. .Fn hypotl
  65. functions
  66. compute the
  67. sqrt(x*x+y*y)
  68. in such a way that underflow will not happen, and overflow
  69. occurs only if the final result deserves it.
  70. The
  71. .Fn cabs ,
  72. .Fn cabsf
  73. and
  74. .Fn cabsl
  75. functions compute the complex absolute value of
  76. .Fa z .
  77. .Pp
  78. .Fn hypot "\*(If" "v"
  79. =
  80. .Fn hypot "v" "\*(If"
  81. = +\*(If for all
  82. .Fa v ,
  83. including \*(Na.
  84. .Sh ERROR (due to Roundoff, etc.)
  85. Below 0.97
  86. .Em ulps .
  87. Consequently
  88. .Fn hypot "5.0" "12.0"
  89. = 13.0
  90. exactly;
  91. in general, hypot and cabs return an integer whenever an
  92. integer might be expected.
  93. .Sh NOTES
  94. As might be expected,
  95. .Fn hypot "v" "\*(Na"
  96. and
  97. .Fn hypot "\*(Na" "v"
  98. are \*(Na for all
  99. .Em finite
  100. .Fa v .
  101. But programmers
  102. might be surprised at first to discover that
  103. .Fn hypot "\(+-\*(If" "\*(Na"
  104. = +\*(If.
  105. This is intentional; it happens because
  106. .Fn hypot "\*(If" "v"
  107. = +\*(If
  108. for
  109. .Em all
  110. .Fa v ,
  111. finite or infinite.
  112. Hence
  113. .Fn hypot "\*(If" "v"
  114. is independent of
  115. .Fa v .
  116. Unlike the reserved operand fault on a
  117. .Tn VAX ,
  118. the
  119. .Tn IEEE
  120. \*(Na is designed to
  121. disappear when it turns out to be irrelevant, as it does in
  122. .Fn hypot "\*(If" "\*(Na" .
  123. .Sh SEE ALSO
  124. .Xr carg 3 ,
  125. .Xr math 3 ,
  126. .Xr sqrt 3
  127. .Sh STANDARDS
  128. The
  129. .Fn hypot ,
  130. .Fn hypotf ,
  131. .Fn hypotl ,
  132. .Fn cabs ,
  133. .Fn cabsf ,
  134. and
  135. .Fn cabsl
  136. functions conform to
  137. .St -isoC-99 .
  138. .Sh HISTORY
  139. Both a
  140. .Fn hypot
  141. function and a
  142. .Fn cabs
  143. function
  144. appeared in
  145. .At v7 .