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