asinh(3) Library Functions Manual asinh(3) NOMBRE asinh, asinhf, asinhl - funcion arcoseno hiperbolico BIBLIOTECA Biblioteca Matematica (libm, -lm) SINOPSIS #include double asinh(double x); float asinhf(float x); long double asinhl(long double x); Requisitos de Macros de Prueba de Caracteristicas para glibc (vease feature_test_macros(7)): asinh(): _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 500 || /* Desde glibc 2.19: */ _DEFAULT_SOURCE || /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE asinhf(), asinhl(): _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L || /* Desde glibc 2.19: */ _DEFAULT_SOURCE || /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE DESCRIPCION These functions calculate the inverse hyperbolic sine of x; that is the value whose hyperbolic sine is x. VALOR DEVUELTO On success, these functions return the inverse hyperbolic sine of x. Si x es un NaN, NaN es devuelto. Si x es un +0 (-0), +0 (-0) es devuelto. If x is positive infinity (negative infinity), positive infinity (negative infinity) is returned. ERRORES No suceden errores. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |asinh(), asinhf(), asinhl() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES C11, POSIX.1-2008. HISTORIAL C99, POSIX.1-2001. La variante que retorna double tambien es conforme a SVr4, 4.3BSD. VEASE TAMBIEN acosh(3), atanh(3), casinh(3), cosh(3), sinh(3), tanh(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Sebastian Desimone 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.9.1 2 Mayo 2024 asinh(3)