1AIRY(3) User Contributed Perl Documentation AIRY(3)
2
3
4
6 PDL::GSLSF::AIRY - PDL interface to GSL Special Functions
7
9 This is an interface to the Special Function package present in the GNU
10 Scientific Library.
11
13 gsl_sf_airy_Ai
14 Signature: (double x(); double [o]y(); double [o]e())
15
16 Airy Function Ai(x).
17
18 gsl_sf_airy_Ai does not process bad values. It will set the bad-value
19 flag of all output ndarrays if the flag is set for any of the input
20 ndarrays.
21
22 gsl_sf_airy_Bi
23 Signature: (double x(); double [o]y(); double [o]e())
24
25 Airy Function Bi(x).
26
27 gsl_sf_airy_Bi does not process bad values. It will set the bad-value
28 flag of all output ndarrays if the flag is set for any of the input
29 ndarrays.
30
31 gsl_sf_airy_Ai_scaled
32 Signature: (double x(); double [o]y(); double [o]e())
33
34 Scaled Airy Function Ai(x). Ai(x) for x < 0 and exp(+2/3 x^{3/2})
35 Ai(x) for x > 0.
36
37 gsl_sf_airy_Ai_scaled does not process bad values. It will set the
38 bad-value flag of all output ndarrays if the flag is set for any of the
39 input ndarrays.
40
41 gsl_sf_airy_Bi_scaled
42 Signature: (double x(); double [o]y(); double [o]e())
43
44 Scaled Airy Function Bi(x). Bi(x) for x < 0 and exp(+2/3 x^{3/2})
45 Bi(x) for x > 0.
46
47 gsl_sf_airy_Bi_scaled does not process bad values. It will set the
48 bad-value flag of all output ndarrays if the flag is set for any of the
49 input ndarrays.
50
51 gsl_sf_airy_Ai_deriv
52 Signature: (double x(); double [o]y(); double [o]e())
53
54 Derivative Airy Function Ai`(x).
55
56 gsl_sf_airy_Ai_deriv does not process bad values. It will set the bad-
57 value flag of all output ndarrays if the flag is set for any of the
58 input ndarrays.
59
60 gsl_sf_airy_Bi_deriv
61 Signature: (double x(); double [o]y(); double [o]e())
62
63 Derivative Airy Function Bi`(x).
64
65 gsl_sf_airy_Bi_deriv does not process bad values. It will set the bad-
66 value flag of all output ndarrays if the flag is set for any of the
67 input ndarrays.
68
69 gsl_sf_airy_Ai_deriv_scaled
70 Signature: (double x(); double [o]y(); double [o]e())
71
72 Derivative Scaled Airy Function Ai(x). Ai`(x) for x < 0 and exp(+2/3
73 x^{3/2}) Ai`(x) for x > 0.
74
75 gsl_sf_airy_Ai_deriv_scaled does not process bad values. It will set
76 the bad-value flag of all output ndarrays if the flag is set for any of
77 the input ndarrays.
78
79 gsl_sf_airy_Bi_deriv_scaled
80 Signature: (double x(); double [o]y(); double [o]e())
81
82 Derivative Scaled Airy Function Bi(x). Bi`(x) for x < 0 and exp(+2/3
83 x^{3/2}) Bi`(x) for x > 0.
84
85 gsl_sf_airy_Bi_deriv_scaled does not process bad values. It will set
86 the bad-value flag of all output ndarrays if the flag is set for any of
87 the input ndarrays.
88
90 This file copyright (C) 1999 Christian Pellegrin
91 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
92 You are allowed to redistribute this software / documentation under
93 certain conditions. For details, see the file COPYING in the PDL
94 distribution. If this file is separated from the PDL distribution, the
95 copyright notice should be included in the file.
96
97 The GSL SF modules were written by G. Jungman.
98
99
100
101perl v5.36.0 2022-07-22 AIRY(3)