table of contents
- bookworm 4.18.1-1
- bookworm-backports 4.24.0-2~bpo12+1
j0(3) | Library Functions Manual | j0(3) |
NOMBRE¶
j0, j0f, j0l, j1, j1f, j1l, jn, jnf, jnl - primer tipo de funciones de Bessel
BIBLIOTECA¶
Biblioteca Matemática (libm, -lm)
SINOPSIS¶
#include <math.h>
double j0(double x); double j1(double x); double jn(int n, double x);
float j0f(float x); float j1f(float x); float jnf(int n, float x);
long double j0l(long double x); long double j1l(long double x); long double jnl(int n, long double x);
j0(), j1(), jn():
_XOPEN_SOURCE
|| /* A partir de glibc 2.19: */ _DEFAULT_SOURCE
|| /* glibc <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE
j0f(), j0l(), j1f(), j1l(), jnf(), jnl():
_XOPEN_SOURCE >= 600
|| (_ISOC99_SOURCE && _XOPEN_SOURCE)
|| /* A partir de glibc 2.19: */ _DEFAULT_SOURCE
|| /* glibc <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE
DESCRIPCIÓN¶
Las funciones j0() y j1() devuelven las funciones de Bessel de x de primera clase de órdenes 0 y 1, respectivamente. La función jn() devuelve la función de Bessel de x de primera clase de orden n.
The j0f(), j1f(), and jnf(), functions are versions that take and return float values. The j0l(), j1l(), and jnl() functions are versions that take and return long double values.
VALOR DEVUELTO¶
Si no ocurre ningún error, estas funciones devuelven el valor de primer tipo de Bessel para x.
Si x es un NaN, NaN es devuelto.
If x is too large in magnitude, or the result underflows, a range error occurs, and the return value is 0.
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
- Range error: result underflow, or x is too large in magnitude
- errno is set to ERANGE.
These functions do not raise exceptions for fetestexcept(3).
ATRIBUTOS¶
Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
j0(), j0f(), j0l() | Seguridad del hilo | Multi-hilo seguro |
j1(), j1f(), j1l() | Seguridad del hilo | Multi-hilo seguro |
jn(), jnf(), jnl() | Seguridad del hilo | Multi-hilo seguro |
ESTÁNDARES¶
The functions returning double conform to SVr4, 4.3BSD, POSIX.1-2001, and POSIX.1-2008. The others are nonstandard functions that also exist on the BSDs.
ERRORES¶
Hay errores de hasta 2e-16 en los valores devueltos por j0(), j1() y jn() para valores de x entre -8 y 8.
VÉASE TAMBIÉN¶
TRADUCCIÓN¶
La traducción al español de esta página del manual fue creada por Gerardo Aburruzaga García <gerardo.aburruzaga@uca.es>, Miguel Pérez Ibars <mpi79470@alu.um.es> y Marcos Fouces <marcos@debian.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@lists.debian.org.
5 Febrero 2023 | Páginas de Manual de Linux 6.03 |