1994-08-19 09:40:01 +00:00
|
|
|
.\" Copyright (c) 1985, 1991 Regents of the University of California.
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-08-19 09:40:01 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" from: @(#)sqrt.3 6.4 (Berkeley) 5/6/91
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-08-19 09:40:01 +00:00
|
|
|
.\"
|
2011-03-12 16:50:39 +00:00
|
|
|
.Dd March 5, 2011
|
1994-08-19 09:40:01 +00:00
|
|
|
.Dt SQRT 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm cbrt ,
|
1995-03-01 05:06:48 +00:00
|
|
|
.Nm cbrtf ,
|
2011-03-12 16:50:39 +00:00
|
|
|
.Nm cbrtl ,
|
1995-03-01 05:06:48 +00:00
|
|
|
.Nm sqrt ,
|
2008-03-02 01:48:17 +00:00
|
|
|
.Nm sqrtf ,
|
|
|
|
.Nm sqrtl
|
1994-08-19 09:40:01 +00:00
|
|
|
.Nd cube root and square root functions
|
2001-10-13 12:23:23 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libm
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In math.h
|
1994-08-19 09:40:01 +00:00
|
|
|
.Ft double
|
|
|
|
.Fn cbrt "double x"
|
1995-03-01 05:06:48 +00:00
|
|
|
.Ft float
|
|
|
|
.Fn cbrtf "float x"
|
2011-03-12 16:50:39 +00:00
|
|
|
.Ft long double
|
|
|
|
.Fn cbrtl "long double x"
|
1994-08-19 09:40:01 +00:00
|
|
|
.Ft double
|
|
|
|
.Fn sqrt "double x"
|
1995-03-01 05:06:48 +00:00
|
|
|
.Ft float
|
|
|
|
.Fn sqrtf "float x"
|
2008-03-02 01:48:17 +00:00
|
|
|
.Ft long double
|
|
|
|
.Fn sqrtl "long double x"
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
2011-03-12 16:50:39 +00:00
|
|
|
.Fn cbrt ,
|
|
|
|
.Fn cbrtf ,
|
|
|
|
and
|
|
|
|
.Fn cbrtl
|
1995-03-01 05:06:48 +00:00
|
|
|
functions compute
|
1994-08-19 09:40:01 +00:00
|
|
|
the cube root of
|
|
|
|
.Ar x .
|
|
|
|
.Pp
|
|
|
|
The
|
2008-03-02 01:48:17 +00:00
|
|
|
.Fn sqrt ,
|
|
|
|
.Fn sqrtf ,
|
|
|
|
and
|
|
|
|
.Fn sqrtl
|
1995-03-01 05:06:48 +00:00
|
|
|
functions compute the
|
2011-03-12 16:50:39 +00:00
|
|
|
non-negative square root of
|
|
|
|
.Ar x .
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh RETURN VALUES
|
|
|
|
The
|
2011-03-12 16:50:39 +00:00
|
|
|
.Fn cbrt ,
|
|
|
|
.Fn cbrtf ,
|
|
|
|
and
|
|
|
|
.Fn cbrtl
|
1995-03-01 05:06:48 +00:00
|
|
|
functions return the requested cube root.
|
1994-08-19 09:40:01 +00:00
|
|
|
The
|
2008-03-02 01:48:17 +00:00
|
|
|
.Fn sqrt ,
|
|
|
|
.Fn sqrtf ,
|
|
|
|
and
|
|
|
|
.Fn sqrtl
|
1995-03-01 05:06:48 +00:00
|
|
|
functions return the requested square root
|
1994-08-19 09:40:01 +00:00
|
|
|
unless an error occurs.
|
2005-01-14 23:28:28 +00:00
|
|
|
An attempt to take the
|
1994-08-19 09:40:01 +00:00
|
|
|
.Fn sqrt
|
|
|
|
of negative
|
|
|
|
.Fa x
|
2007-12-14 07:53:09 +00:00
|
|
|
raises an invalid exception and causes an \*(Na to be returned
|
|
|
|
(except that the square root of -0 is valid and equal to -0.)
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh SEE ALSO
|
2005-01-14 23:28:28 +00:00
|
|
|
.Xr fenv 3 ,
|
1996-02-12 01:20:38 +00:00
|
|
|
.Xr math 3
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
2007-12-14 07:53:09 +00:00
|
|
|
.Fn cbrt ,
|
|
|
|
.Fn cbrtf ,
|
2011-03-12 16:50:39 +00:00
|
|
|
.Fn cbrtl ,
|
2007-12-14 07:53:09 +00:00
|
|
|
.Fn sqrt ,
|
2008-03-02 01:48:17 +00:00
|
|
|
.Fn sqrtf ,
|
2007-12-14 07:53:09 +00:00
|
|
|
and
|
2008-03-02 01:48:17 +00:00
|
|
|
.Fn sqrtl
|
2007-12-14 07:53:09 +00:00
|
|
|
functions conform to
|
|
|
|
.St -isoC-99 .
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
2000-11-20 14:11:46 +00:00
|
|
|
.Fn cbrt
|
1994-08-19 09:40:01 +00:00
|
|
|
function appeared in
|
|
|
|
.Bx 4.3 .
|
2008-03-02 01:48:17 +00:00
|
|
|
The
|
|
|
|
.Fn sqrtl
|
|
|
|
function appeared in
|
|
|
|
.Fx 8.0 .
|
2011-03-12 16:50:39 +00:00
|
|
|
The
|
|
|
|
.Fn cbrtl
|
|
|
|
function appeared in
|
|
|
|
.Fx 9.0 .
|