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