1j0(3M) Mathematical Library Functions j0(3M)
2
3
4
6 j0, j0f, j0l, j1, j1f, j1l, jn, jnf, jnl - Bessel functions of the
7 first kind
8
10 c99 [ flag... ] file... -lm [ library... ]
11 #include <math.h>
12
13 double j0(double x);
14
15
16 float j0f(float x);
17
18
19 long double j0l(long double x);
20
21
22 double j1(double x);
23
24
25 float j1f(float x);
26
27
28 long double j1l(long double x);
29
30
31 double jn(int n, double x);
32
33
34 float jnf(int n, float x);
35
36
37 long double jnl(int n, long double x);
38
39
41 These functions compute Bessel functions of x of the first kind of
42 orders 0, 1 and n respectively.
43
45 Upon successful completion, these functions return the relevant Bessel
46 value of x of the first kind.
47
48
49 If x is NaN, a NaN is returned.
50
52 No errors are defined.
53
55 See attributes(5) for descriptions of the following attributes:
56
57
58
59
60 ┌─────────────────────────────┬─────────────────────────────┐
61 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
62 ├─────────────────────────────┼─────────────────────────────┤
63 │Interface Stability │See below. │
64 ├─────────────────────────────┼─────────────────────────────┤
65 │MT-Level │MT-Safe │
66 └─────────────────────────────┴─────────────────────────────┘
67
68
69 The j0(), j1(), and jn() functions are Standard. The j0f(), j0l(),
70 j1f(), j1l(), jnf(), and jnl() functions are Stable.
71
73 isnan(3M), y0(3M), math.h(3HEAD), attributes(5), standards(5)
74
75
76
77SunOS 5.11 12 Jul 2006 j0(3M)