NetBSD/lib/libm/man/lgamma.3

125 lines
3.6 KiB
Groff
Raw Normal View History

1993-03-21 12:45:37 +03: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.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the University of
.\" California, Berkeley and its contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\" 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.
.\"
1993-08-14 17:42:09 +04:00
.\" from: @(#)lgamma.3 6.6 (Berkeley) 12/3/92
.\" $Id: lgamma.3,v 1.4 1993/08/14 13:42:55 mycroft Exp $
1993-03-21 12:45:37 +03:00
.\"
1993-08-14 17:42:09 +04:00
.Dd December 3, 1992
1993-03-21 12:45:37 +03:00
.Dt LGAMMA 3
.Os BSD 4.3
.Sh NAME
.Nm lgamma
1993-08-14 17:42:09 +04:00
.Nm gamma
.Nd log gamma function, gamma function
1993-03-21 12:45:37 +03:00
.Sh SYNOPSIS
.Fd #include <math.h>
1993-08-14 17:42:09 +04:00
.Ft extern int
.Fa signgam ;
.sp
1993-03-21 12:45:37 +03:00
.Ft double
.Fn lgamma "double x"
1993-08-14 17:42:09 +04:00
.Ft double
.Fn gamma "double x"
1993-03-21 12:45:37 +03:00
.Sh DESCRIPTION
1993-08-14 17:42:09 +04:00
.Fn Lgamma x
1993-03-21 12:45:37 +03:00
.if t \{\
1993-08-14 17:42:09 +04:00
returns ln\||\(*G(x)| where
1993-03-21 12:45:37 +03:00
.Bd -unfilled -offset indent
\(*G(x) = \(is\d\s8\z0\s10\u\u\s8\(if\s10\d t\u\s8x\-1\s10\d e\u\s8\-t\s10\d dt for x > 0 and
.br
1993-08-04 03:00:07 +04:00
\(*G(x) = \(*p/(\(*G(1\-x)\|sin(\(*px)) for x < 1.
1993-03-21 12:45:37 +03:00
.Ed
1993-08-14 17:42:09 +04:00
.\}
1993-03-21 12:45:37 +03:00
.if n \
1993-08-14 17:42:09 +04:00
returns ln\||\(*G(x)|.
1993-03-21 12:45:37 +03:00
.Pp
The external integer
.Fa signgam
1993-08-14 17:42:09 +04:00
returns the sign of \(*G(x).
.Pp
.Fn Gamma x
returns \(*G(x), with no effect on
.Fa signgam .
1993-03-21 12:45:37 +03:00
.Sh IDIOSYNCRASIES
1993-08-14 17:42:09 +04:00
Do not use the expression
1993-03-21 12:45:37 +03:00
.Dq Li signgam\(**exp(lgamma(x))
1993-08-14 17:42:09 +04:00
to compute g := \(*G(x).
Instead use a program like this (in C):
1993-03-21 12:45:37 +03:00
.Bd -literal -offset indent
lg = lgamma(x); g = signgam\(**exp(lg);
.Ed
.Pp
Only after
.Fn lgamma
has returned can signgam be correct.
.Pp
1993-08-14 17:42:09 +04:00
For arguments in its range,
.Fn gamma
is preferred, as for positive arguments
it is accurate to within one unit in the last place.
Exponentiation of
.Fn lgamma
will lose up to 10 significant bits.
.Sh RETURN VALUES
.Fn Gamma
1993-03-21 12:45:37 +03:00
and
.Fn lgamma
1993-08-14 17:42:09 +04:00
return appropriate values unless an arguent is out of range.
Overflow will occur for sufficiently large positive values, and
non-positive integers.
On the
.Tn VAX,
the reserved operator is returned,
and
1993-03-21 12:45:37 +03:00
.Va errno
is set to
1993-08-14 17:42:09 +04:00
.Er ERANGE
For large non-integer negative values,
.Fn gamma
will underflow.
1993-03-21 12:45:37 +03:00
.Sh SEE ALSO
.Xr math 3 ,
.Xr infnan 3
.Sh HISTORY
The
1993-08-14 17:42:09 +04:00
.Nm lgamma
1993-03-21 12:45:37 +03:00
function appeared in
.Bx 4.3 .
1993-08-14 17:42:09 +04:00
The
.Nm gamma
function appeared in
.Bx 4.4 .
The name
.Fn gamma
was originally dedicated to the
.Fn lgamma
function, so some old code may no longer be compatible.