gamma(3) Library Functions Manual gamma(3) NOMBRE gamma, gammaf, gammal - (logaritmo de la) funcion gamma BIBLIOTECA Biblioteca Matematica (libm, -lm) SINOPSIS #include [[a extinguir]] double gamma(double x); [[a extinguir]] float gammaf(float x); [[a extinguir]] long double gammal(long double x); Requisitos de Macros de Prueba de Caracteristicas para glibc (vease feature_test_macros(7)): gamma(): _XOPEN_SOURCE || /* Desde glibc 2.19: */ _DEFAULT_SOURCE || /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE gammaf(), gammal(): _XOPEN_SOURCE >= 600 || (_XOPEN_SOURCE && _ISOC99_SOURCE) || /* A partir de glibc 2.19: */ _DEFAULT_SOURCE || /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE DESCRIPCION Estas funciones estan obsoletas. En su lugar, emplee tgamma(3) o lgamma(3) segun se adapte. Para obtener una explicacion de la funcion Gamma, consulte tgamma(3). version BSD The libm in 4.4BSD and some versions of FreeBSD had a gamma() function that computes the Gamma function, as one would expect. version glibc glibc has a gamma() function that is equivalent to lgamma(3) and computes the natural logarithm of the Gamma function. VALOR DEVUELTO Vea lgamma(3). ERRORES Vea lgamma(3). ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +------------------------+--------------------+------------------------+ |Interfaz | Atributo | Valor | +------------------------+--------------------+------------------------+ |gamma(), gammaf(), | Seguridad del hilo | MT-Unsafe race:signgam | |gammal() | | | +------------------------+--------------------+------------------------+ ESTANDARES None. HISTORIAL SVID 2. Because of historical variations in behavior across systems, this function is not specified in any recent standard. 4.2BSD had a gamma() that computed ln(|Gamma(|x|)|), leaving the sign of Gamma(|x|) in the external integer signgam. In 4.3BSD the name was changed to lgamma(3), and the man page promises "At some time in the future the name gamma will be rehabilitated and used for the Gamma function" This did indeed happen in 4.4BSD, where gamma() computes the Gamma function (with no effect on signgam). However, this came too late, and we now have tgamma(3), the "true gamma" function. VEASE TAMBIEN lgamma(3), signgam(3), tgamma(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Miguel Perez Ibars y Marcos Fouces Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 gamma(3)