1HYPERG(3) User Contributed Perl Documentation HYPERG(3)
2
3
4
6 PDL::GSLSF::HYPERG - 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_hyperg_0F1
16
17 Signature: (double x(); double [o]y(); double [o]e(); double c)
18
19 /* Hypergeometric function related to Bessel functions 0F1[c,x] =
20 Gamma[c] x^(1/2(1-c)) I_{c-1}(2 Sqrt[x]) Gamma[c] (-x)^(1/2(1-c))
21 J_{c-1}(2 Sqrt[-x])
22
23 gsl_sf_hyperg_1F1
24
25 Signature: (double x(); double [o]y(); double [o]e(); double a; double b)
26
27 Confluent hypergeometric function for integer parameters. 1F1[a,b,x] =
28 M(a,b,x)
29
30 gsl_sf_hyperg_U
31
32 Signature: (double x(); double [o]y(); double [o]e(); double a; double b)
33
34 Confluent hypergeometric function for integer parameters. U(a,b,x)
35
36 gsl_sf_hyperg_2F1
37
38 Signature: (double x(); double [o]y(); double [o]e(); double a; double b; double c)
39
40 Confluent hypergeometric function for integer parameters. 2F1[a,b,c,x]
41
42 gsl_sf_hyperg_2F1_conj
43
44 Signature: (double x(); double [o]y(); double [o]e(); double a; double b; double c)
45
46 Gauss hypergeometric function 2F1[aR + I aI, aR - I aI, c, x]
47
48 gsl_sf_hyperg_2F1_renorm
49
50 Signature: (double x(); double [o]y(); double [o]e(); double a; double b; double c)
51
52 Renormalized Gauss hypergeometric function 2F1[a,b,c,x] / Gamma[c]
53
54 gsl_sf_hyperg_2F1_conj_renorm
55
56 Signature: (double x(); double [o]y(); double [o]e(); double a; double b; double c)
57
58 Renormalized Gauss hypergeometric function 2F1[aR + I aI, aR - I aI, c,
59 x] / Gamma[c]
60
61 gsl_sf_hyperg_2F0
62
63 Signature: (double x(); double [o]y(); double [o]e(); double a; double b)
64
65 Mysterious hypergeometric function. The series representation is a
66 divergent hypergeometric series. However, for x < 0 we have 2F0(a,b,x)
67 = (-1/x)^a U(a,1+a-b,-1/x)
68
70 This file copyright (C) 1999 Christian Pellegrin <chri@infis.univ.tri‐
71 este.it> All rights reserved. There is no warranty. You are allowed to
72 redistribute this software / documentation under certain conditions.
73 For details, see the file COPYING in the PDL distribution. If this file
74 is separated from the PDL distribution, the copyright notice should be
75 included in the file.
76
77 The GSL SF modules were written by G. Jungman.
78
79
80
81perl v5.8.8 2006-12-02 HYPERG(3)