]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/msun/man/csqrt.3
Remove $FreeBSD$: two-line nroff pattern
[FreeBSD/FreeBSD.git] / lib / msun / man / csqrt.3
1 .\" Copyright (c) 2007-2008 David Schultz <das@FreeBSD.org>
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 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .Dd November 4, 2018
26 .Dt CSQRT 3
27 .Os
28 .Sh NAME
29 .Nm csqrt ,
30 .Nm csqrtf ,
31 .Nm csqrtl
32 .Nd complex square root functions
33 .Sh LIBRARY
34 .Lb libm
35 .Sh SYNOPSIS
36 .In complex.h
37 .Ft double complex
38 .Fn csqrt "double complex z"
39 .Ft float complex
40 .Fn csqrtf "float complex z"
41 .Ft long double complex
42 .Fn csqrtl "long double complex z"
43 .Sh DESCRIPTION
44 The
45 .Fn csqrt ,
46 .Fn csqrtf ,
47 and
48 .Fn csqrtl
49 functions compute the square root of
50 .Fa z
51 in the complex plane, with a branch cut along the negative real axis.
52 In other words,
53 .Fn csqrt ,
54 .Fn csqrtf ,
55 and
56 .Fn csqrtl
57 always return the square root whose real part is non-negative.
58 .Sh RETURN VALUES
59 These functions return the requested square root.
60 The square root of 0 is
61 .Li +0 \*(Pm 0 ,
62 where the imaginary parts of the input and respective result have
63 the same sign.
64 For infinities and \*(Nas, the following rules apply, with the
65 earlier rules having precedence:
66 .Bl -column -offset indent "-\*(If + \*(Na*I" "\*(If \*(Pm \*(If*I  " "(for all k)"
67 .Em "Input" Ta Em "Result" Ta \&
68 k + \*(If*I     \*(If + \*(If*I (for all k)
69 -\*(If + \*(Na*I        \*(Na \*(Pm \*(If*I     \&
70 \*(If + \*(Na*I \*(If + \*(Na*I \&
71 k + \*(Na*I     \*(Na + \*(Na*I \&
72 \*(Na + k*I     \*(Na + \*(Na*I \&
73 -\*(If + k*I    +0 + \*(If*I    \&
74 \*(If + k*I     \*(If + 0*I     \&
75 .El
76 .Pp
77 For numbers with negative imaginary parts, the above special cases
78 apply given the identity:
79 .Dl csqrt(conj(z)) = conj(csqrt(z))
80 Note that the sign of \*(Na is indeterminate.
81 Also, if the real or imaginary part of the input is finite and
82 an \*(Na is generated, an invalid exception will be thrown.
83 .Sh SEE ALSO
84 .Xr cabs 3 ,
85 .Xr fenv 3 ,
86 .Xr math 3
87 .Sh STANDARDS
88 The
89 .Fn csqrt ,
90 .Fn csqrtf ,
91 and
92 .Fn csqrtl
93 functions conform to
94 .St -isoC-99 .
95 .Sh BUGS
96 For
97 .Fn csqrt
98 and
99 .Fn csqrtl ,
100 inexact results are not always correctly rounded.