j0, j0f, j0l, j1, j1f, j1l, jn, jnf, jnl - primer tipo de funciones de Bessel
Biblioteca Matemática (
libm,
-lm)
#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
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.
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.
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).
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 |
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.
Hay errores de hasta 2e-16 en los valores devueltos por
j0(),
j1()
y
jn() para valores de
x entre -8 y 8.
y0(3)
La traducción al español de esta página del manual fue
creada por Gerardo Aburruzaga García <
[email protected]>,
Miguel Pérez Ibars <
[email protected]> y Marcos Fouces
<
[email protected]>
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
[email protected]