1Y0(P) POSIX Programmer's Manual Y0(P)
2
3
4
6 y0, y1, yn - Bessel functions of the second kind
7
9 #include <math.h>
10
11 double y0(double x);
12 double y1(double x);
13 double yn(int n, double x);
14
15
17 The y0(), y1(), and yn() functions shall compute Bessel functions of x
18 of the second kind of orders 0, 1, and n, respectively.
19
20 An application wishing to check for error situations should set errno
21 to zero and call feclearexcept(FE_ALL_EXCEPT) before calling these
22 functions. On return, if errno is non-zero or fetestexcept(FE_INVALID
23 | FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW) is non-zero, an error has
24 occurred.
25
27 Upon successful completion, these functions shall return the relevant
28 Bessel value of x of the second kind.
29
30 If x is NaN, NaN shall be returned.
31
32 If the x argument to these functions is negative, -HUGE_VAL or NaN
33 shall be returned, and a domain error may occur.
34
35 If x is 0.0, -HUGE_VAL shall be returned and a range error may occur.
36
37 If the correct result would cause underflow, 0.0 shall be returned and
38 a range error may occur.
39
40 If the correct result would cause overflow, -HUGE_VAL or 0.0 shall be
41 returned and a range error may occur.
42
44 These functions may fail if:
45
46 Domain Error
47 The value of x is negative.
48
49 If the integer expression (math_errhandling & MATH_ERRNO) is non-zero,
50 then errno shall be set to [EDOM]. If the integer expression
51 (math_errhandling & MATH_ERREXCEPT) is non-zero, then the invalid
52 floating-point exception shall be raised.
53
54 Range Error
55 The value of x is 0.0, or the correct result would cause over‐
56 flow.
57
58 If the integer expression (math_errhandling & MATH_ERRNO) is non-zero,
59 then errno shall be set to [ERANGE]. If the integer expression
60 (math_errhandling & MATH_ERREXCEPT) is non-zero, then the overflow
61 floating-point exception shall be raised.
62
63 Range Error
64 The value of x is too large in magnitude, or the correct result
65 would cause underflow.
66
67 If the integer expression (math_errhandling & MATH_ERRNO) is non-zero,
68 then errno shall be set to [ERANGE]. If the integer expression
69 (math_errhandling & MATH_ERREXCEPT) is non-zero, then the underflow
70 floating-point exception shall be raised.
71
72
73 The following sections are informative.
74
76 None.
77
79 On error, the expressions (math_errhandling & MATH_ERRNO) and
80 (math_errhandling & MATH_ERREXCEPT) are independent of each other, but
81 at least one of them must be non-zero.
82
84 None.
85
87 None.
88
90 feclearexcept() , fetestexcept() , isnan() , j0() , the Base Defini‐
91 tions volume of IEEE Std 1003.1-2001, Section 4.18, Treatment of Error
92 Conditions for Mathematical Functions, <math.h>
93
95 Portions of this text are reprinted and reproduced in electronic form
96 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
97 -- Portable Operating System Interface (POSIX), The Open Group Base
98 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
99 Electrical and Electronics Engineers, Inc and The Open Group. In the
100 event of any discrepancy between this version and the original IEEE and
101 The Open Group Standard, the original IEEE and The Open Group Standard
102 is the referee document. The original Standard can be obtained online
103 at http://www.opengroup.org/unix/online.html .
104
105
106
107IEEE/The Open Group 2003 Y0(P)