]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/sqrt.3
erf.3: ffix
[thirdparty/man-pages.git] / man3 / sqrt.3
CommitLineData
fea681da 1.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
631c6898
MK
2.\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
3.\" <mtk.manpages@gmail.com>
fea681da
MK
4.\"
5.\" Permission is granted to make and distribute verbatim copies of this
6.\" manual provided the copyright notice and this permission notice are
7.\" preserved on all copies.
8.\"
9.\" Permission is granted to copy and distribute modified versions of this
10.\" manual under the conditions for verbatim copying, provided that the
11.\" entire resulting derived work is distributed under the terms of a
12.\" permission notice identical to this one.
c13182ef 13.\"
fea681da
MK
14.\" Since the Linux kernel and libraries are constantly changing, this
15.\" manual page may be incorrect or out-of-date. The author(s) assume no
16.\" responsibility for errors or omissions, or for damages resulting from
17.\" the use of the information contained herein. The author(s) may not
18.\" have taken the same level of care in the production of this manual,
19.\" which is licensed free of charge, as they might when working
20.\" professionally.
c13182ef 21.\"
fea681da
MK
22.\" Formatted or processed versions of this manual, if unaccompanied by
23.\" the source, must acknowledge the copyright and authors of this work.
24.\"
25.\" References consulted:
26.\" Linux libc source code
27.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28.\" 386BSD man pages
29.\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
30.\" Modified 2002-07-27 by Walter Harms
31.\" (walter.harms@informatik.uni-oldenburg.de)
a1949252 32.TH SQRT 3 2008-08-05 "" "Linux Programmer's Manual"
fea681da
MK
33.SH NAME
34sqrt, sqrtf, sqrtl \- square root function
35.SH SYNOPSIS
36.nf
37.B #include <math.h>
38.sp
39.BI "double sqrt(double " x );
d39541ec 40.br
fea681da 41.BI "float sqrtf(float " x );
d39541ec 42.br
fea681da
MK
43.BI "long double sqrtl(long double " x );
44.fi
45.sp
20c58d70 46Link with \fI\-lm\fP.
631c6898
MK
47.sp
48.in -4n
49Feature Test Macro Requirements for glibc (see
50.BR feature_test_macros (7)):
51.in
52.sp
53.ad l
54.BR sqrtf (),
55.BR sqrtl ():
b90c43a8
MK
56.RS 4
57_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE;
58.br
59or
631c6898 60.I cc\ -std=c99
b90c43a8
MK
61.RE
62.ad
fea681da 63.SH DESCRIPTION
60a90ecd
MK
64The
65.BR sqrt ()
2fda57bd 66function returns the nonnegative square root of \fIx\fP.
631c6898
MK
67.SH "RETURN VALUE"
68On success, these functions return the square root of
69.IR x .
70
71If
72.I x
73is a NaN, a NaN is returned.
74
75If
76.I x
77is +0 (\-0), +0 (\-0) is returned.
78
79If
80.I x
81is positive infinity, positive infinity is returned.
82
83If
84.I x
85is less than \-0,
efe294cb 86a domain error occurs,
631c6898 87and a NaN is returned.
fea681da 88.SH ERRORS
631c6898
MK
89See
90.BR math_error (7)
91for information on how to determine whether an error has occurred
92when calling these functions.
93.PP
94The following errors can occur:
fea681da 95.TP
631c6898
MK
96Domain error: \fIx\fP less than \-0
97.I errno
98is set to
99.BR EDOM .
100An invalid floating-point exception
101.RB ( FE_INVALID )
102is raised.
fea681da 103.SH "CONFORMING TO"
631c6898
MK
104C99, POSIX.1-2001.
105The variant returning
106.I double
107also conforms to
68e1685c 108SVr4, 4.3BSD, C89.
fea681da 109.SH "SEE ALSO"
36268806
MK
110.BR cbrt (3),
111.BR csqrt (3),
fea681da 112.BR hypot (3)