sourCEntral - mobile manpages

pdf

asin

NOMBRE

asin, asinf, asinl - función arcoseno

BIBLIOTECA

Biblioteca Matemática (libm, -lm)

SINOPSIS

#include <math.h>

double asin(double x);
float asinf(float
x);
long double asinl(long double
x);

Requisitos de Macros de Prueba de Características para glibc (véase feature_test_macros(7)):

asinf(), asinl():
_ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
|| /* Desde glibc 2.19: */ _DEFAULT_SOURCE
|| /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE

DESCRIPCIÓN

Estas funciones calculan el valor principal del arcoseno de x, es decir, el valor cuyo seno es x

VALOR DEVUELTO

On success, these functions return the principal value of the arc sine of x in radians; the return value is in the range [-pi/2, pi/2].

Si x es un NaN, NaN es devuelto.

Si x es un +0 (-0), +0 (-0) es devuelto.

If x is outside the range [-1, 1], a domain error occurs, and a NaN is returned.

ERRORES

Consulte math_error(7) para saber cómo es posible conocer si se ha producido algún error al invocar estas funciones.

Puede ocurrir los siguientes errores
Error de dominio: x está fuera del intervalo [-1, 1]

errno is set to EDOM. An invalid floating-point exception (FE_INVALID) is raised.

ATRIBUTOS

Para obtener una explicación de los términos usados en esta sección, véase attributes(7).

img

ESTÁNDARES

C99, POSIX.1-2001, POSIX.1-2008.

The variant returning double also conforms to SVr4, 4.3BSD.

VÉASE TAMBIÉN

acos(3), atan(3), atan2(3), casin(3), cos(3), sin(3), tan(3)

TRADUCCIÓN

La traducción al español de esta página del manual fue creada por Sebastian Desimone <chipy AT argenet DOT com DOT ar>, Gerardo Aburruzaga García <gerardo DOT aburruzaga AT uca DOT es> y Marcos Fouces <marcos AT debian DOT org>

Esta traducción es documentación libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.

Si encuentra algún error en la traducción de esta página del manual, envíe un correo electrónico a debian-l10n-spanish.

pdf