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: @(#)lgamma.3 6.6 (Berkeley) 12/3/92
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-08-19 09:40:01 +00:00
|
|
|
.\"
|
2017-12-10 16:42:59 +00:00
|
|
|
.Dd December 8, 2017
|
1994-08-19 09:40:01 +00:00
|
|
|
.Dt LGAMMA 3
|
2001-07-10 13:41:46 +00:00
|
|
|
.Os
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm lgamma ,
|
2003-02-26 13:12:03 +00:00
|
|
|
.Nm lgamma_r ,
|
1995-03-01 05:06:48 +00:00
|
|
|
.Nm lgammaf ,
|
2003-02-26 13:12:03 +00:00
|
|
|
.Nm lgammaf_r ,
|
2014-09-15 23:21:57 +00:00
|
|
|
.Nm lgammal ,
|
|
|
|
.Nm lgammal_r ,
|
1995-03-01 05:06:48 +00:00
|
|
|
.Nm gamma ,
|
2003-02-26 13:12:03 +00:00
|
|
|
.Nm gamma_r ,
|
2002-03-26 11:59:29 +00:00
|
|
|
.Nm gammaf ,
|
2003-02-26 13:12:03 +00:00
|
|
|
.Nm gammaf_r ,
|
2008-02-18 17:27:11 +00:00
|
|
|
.Nm tgamma ,
|
2017-12-10 16:42:59 +00:00
|
|
|
.Nm tgammaf ,
|
|
|
|
.Nm tgammal ,
|
2002-03-26 11:59:29 +00:00
|
|
|
.Nd log gamma functions, gamma function
|
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 extern int
|
|
|
|
.Fa signgam ;
|
|
|
|
.sp
|
|
|
|
.Ft double
|
|
|
|
.Fn lgamma "double x"
|
2003-02-26 13:12:03 +00:00
|
|
|
.Ft double
|
2003-03-02 21:04:21 +00:00
|
|
|
.Fn lgamma_r "double x" "int *signgamp"
|
1995-03-01 05:06:48 +00:00
|
|
|
.Ft float
|
|
|
|
.Fn lgammaf "float x"
|
2003-02-26 13:12:03 +00:00
|
|
|
.Ft float
|
2003-03-02 21:04:21 +00:00
|
|
|
.Fn lgammaf_r "float x" "int *signgamp"
|
2014-09-15 23:21:57 +00:00
|
|
|
.Ft "long double"
|
|
|
|
.Fn lgammal "long double x"
|
|
|
|
.Ft "long double"
|
|
|
|
.Fn lgammal_r "long double x" "int *signgamp"
|
1994-08-19 09:40:01 +00:00
|
|
|
.Ft double
|
|
|
|
.Fn gamma "double x"
|
2003-02-26 13:12:03 +00:00
|
|
|
.Ft double
|
2003-03-02 21:04:21 +00:00
|
|
|
.Fn gamma_r "double x" "int *signgamp"
|
1995-03-01 05:06:48 +00:00
|
|
|
.Ft float
|
1997-07-13 14:45:28 +00:00
|
|
|
.Fn gammaf "float x"
|
2003-02-26 13:12:03 +00:00
|
|
|
.Ft float
|
2003-03-02 21:04:21 +00:00
|
|
|
.Fn gammaf_r "float x" "int *signgamp"
|
2014-09-15 23:21:57 +00:00
|
|
|
.Ft "long double"
|
2002-03-26 11:59:29 +00:00
|
|
|
.Fn tgamma "double x"
|
2008-02-18 17:27:11 +00:00
|
|
|
.Ft float
|
|
|
|
.Fn tgammaf "float x"
|
2017-12-10 16:42:59 +00:00
|
|
|
.Ft "long double"
|
|
|
|
.Fn tgammal "long double x"
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh DESCRIPTION
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn lgamma x ,
|
|
|
|
.Fn lgammaf x ,
|
1995-03-01 05:06:48 +00:00
|
|
|
and
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn lgammal x
|
1994-08-19 09:40:01 +00:00
|
|
|
.if t \{\
|
1995-03-01 05:06:48 +00:00
|
|
|
return ln\||\(*G(x)| where
|
1994-08-19 09:40:01 +00: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
|
|
|
|
\(*G(x) = \(*p/(\(*G(1\-x)\|sin(\(*px)) for x < 1.
|
|
|
|
.Ed
|
|
|
|
.\}
|
|
|
|
.if n \
|
1997-07-13 14:45:28 +00:00
|
|
|
return ln\||\(*G(x)|.
|
1994-08-19 09:40:01 +00:00
|
|
|
The external integer
|
|
|
|
.Fa signgam
|
|
|
|
returns the sign of \(*G(x).
|
|
|
|
.Pp
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn lgamma_r x signgamp ,
|
|
|
|
.Fn lgammaf_r x signgamp ,
|
2002-03-26 10:18:20 +00:00
|
|
|
and
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn lgammal_r x signgamp
|
2003-02-26 13:12:03 +00:00
|
|
|
provide the same functionality as
|
2014-12-29 13:50:59 +00:00
|
|
|
.Fn lgamma x ,
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn lgammaf x ,
|
1995-03-01 05:06:48 +00:00
|
|
|
and
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn lgammal x ,
|
2003-03-02 21:04:21 +00:00
|
|
|
but the caller must provide an integer to store the sign of \(*G(x).
|
2003-02-26 13:12:03 +00:00
|
|
|
.Pp
|
2008-02-18 17:27:11 +00:00
|
|
|
The
|
2017-12-10 16:42:59 +00:00
|
|
|
.Fn tgamma x ,
|
|
|
|
.Fn tgammaf x ,
|
2008-02-18 17:27:11 +00:00
|
|
|
and
|
2017-12-10 16:42:59 +00:00
|
|
|
.Fn tgammal x
|
2008-02-18 17:27:11 +00:00
|
|
|
functions return \(*G(x), with no effect on
|
|
|
|
.Fa signgam .
|
|
|
|
.Pp
|
2003-02-26 13:12:03 +00:00
|
|
|
.Fn gamma ,
|
|
|
|
.Fn gammaf ,
|
|
|
|
.Fn gamma_r ,
|
|
|
|
and
|
|
|
|
.Fn gammaf_r
|
|
|
|
are deprecated aliases for
|
|
|
|
.Fn lgamma ,
|
2002-03-26 10:18:20 +00:00
|
|
|
.Fn lgammaf ,
|
2003-02-26 13:12:03 +00:00
|
|
|
.Fn lgamma_r ,
|
|
|
|
and
|
|
|
|
.Fn lgammaf_r ,
|
2002-03-26 10:18:20 +00:00
|
|
|
respectively.
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh IDIOSYNCRASIES
|
|
|
|
Do not use the expression
|
|
|
|
.Dq Li signgam\(**exp(lgamma(x))
|
|
|
|
to compute g := \(*G(x).
|
|
|
|
Instead use a program like this (in C):
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
lg = lgamma(x); g = signgam\(**exp(lg);
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Only after
|
|
|
|
.Fn lgamma
|
1995-03-01 05:06:48 +00:00
|
|
|
or
|
|
|
|
.Fn lgammaf
|
1994-08-19 09:40:01 +00:00
|
|
|
has returned can signgam be correct.
|
2002-03-26 11:59:29 +00:00
|
|
|
.Pp
|
|
|
|
For arguments in its range,
|
|
|
|
.Fn tgamma
|
|
|
|
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.
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh RETURN VALUES
|
1995-03-01 05:06:48 +00:00
|
|
|
.Fn gamma ,
|
|
|
|
.Fn gammaf ,
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn gammal ,
|
|
|
|
.Fn gamma_r ,
|
2003-02-26 13:12:03 +00:00
|
|
|
.Fn gammaf_r ,
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn gammal_r ,
|
1995-03-01 05:06:48 +00:00
|
|
|
.Fn lgamma ,
|
2003-03-02 21:04:21 +00:00
|
|
|
.Fn lgammaf ,
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn lgammal ,
|
|
|
|
.Fn lgamma_r ,
|
|
|
|
.Fn lgammaf_r ,
|
1994-08-19 09:40:01 +00:00
|
|
|
and
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn lgammal_r
|
1994-08-19 09:40:01 +00:00
|
|
|
return appropriate values unless an argument is out of range.
|
|
|
|
Overflow will occur for sufficiently large positive values, and
|
|
|
|
non-positive integers.
|
2002-03-26 11:59:29 +00:00
|
|
|
For large non-integer negative values,
|
|
|
|
.Fn tgamma
|
|
|
|
will underflow.
|
2017-12-10 16:42:59 +00:00
|
|
|
.Sh BUGS
|
|
|
|
To conform with newer C/C++ standards, a stub implementation for
|
|
|
|
.Nm tgammal
|
|
|
|
was committed to the math library, where
|
|
|
|
.Nm tgammal
|
|
|
|
is mapped to
|
2017-12-10 23:03:13 +00:00
|
|
|
.Nm tgamma .
|
2017-12-10 16:42:59 +00:00
|
|
|
Thus, the numerical accuracy is at most that of the 53-bit double
|
|
|
|
precision implementation.
|
1994-08-19 09:40:01 +00:00
|
|
|
.Sh SEE ALSO
|
1996-02-12 01:20:38 +00:00
|
|
|
.Xr math 3
|
2002-03-26 11:59:29 +00:00
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
2008-02-18 17:27:11 +00:00
|
|
|
.Fn lgamma ,
|
|
|
|
.Fn lgammaf ,
|
2014-09-15 23:21:57 +00:00
|
|
|
.Fn lgammal ,
|
2008-02-18 17:27:11 +00:00
|
|
|
.Fn tgamma ,
|
2017-12-10 16:42:59 +00:00
|
|
|
.Fn tgammaf ,
|
2002-03-26 11:59:29 +00:00
|
|
|
and
|
2017-12-10 16:42:59 +00:00
|
|
|
.Fn tgammal
|
2002-03-26 11:59:29 +00:00
|
|
|
functions are expected to 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 lgamma
|
2001-07-15 07:53:42 +00:00
|
|
|
function appeared in
|
1994-08-19 09:40:01 +00:00
|
|
|
.Bx 4.3 .
|
|
|
|
The
|
2000-11-20 14:11:46 +00:00
|
|
|
.Fn gamma
|
1994-08-19 09:40:01 +00:00
|
|
|
function appeared in
|
2001-11-20 16:40:04 +00:00
|
|
|
.Bx 4.4
|
|
|
|
as a function which computed \(*G(x).
|
2002-03-26 10:18:20 +00:00
|
|
|
This version was used in
|
|
|
|
.Fx 1.1 .
|
|
|
|
The name
|
2001-11-05 10:10:33 +00:00
|
|
|
.Fn gamma
|
2002-03-26 10:18:20 +00:00
|
|
|
was originally dedicated to the
|
|
|
|
.Fn lgamma
|
|
|
|
function,
|
|
|
|
and that usage was restored by switching to Sun's fdlibm in
|
|
|
|
.Fx 1.1.5 .
|
2001-11-05 10:10:33 +00:00
|
|
|
The
|
|
|
|
.Fn tgamma
|
2002-03-26 11:59:29 +00:00
|
|
|
function appeared in
|
|
|
|
.Fx 5.0 .
|