1LEGENDRE(3) User Contributed Perl Documentation LEGENDRE(3)
2
3
4
6 PDL::GSLSF::LEGENDRE - 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_legendre_Pl
16
17 Signature: (double x(); double [o]y(); double [o]e(); int l)
18
19 P_l(x)
20
21 gsl_sf_legendre_Pl_array
22
23 Signature: (double x(); double [o]y(num); int l=>num)
24
25 P_l(x) from 0 to n-1.
26
27 gsl_sf_legendre_Ql
28
29 Signature: (double x(); double [o]y(); double [o]e(); int l)
30
31 Q_l(x)
32
33 gsl_sf_legendre_Plm
34
35 Signature: (double x(); double [o]y(); double [o]e(); int l; int m)
36
37 P_lm(x)
38
39 gsl_sf_legendre_Plm_array
40
41 Signature: (double x(); double [o]y(num); int l=>num; int m)
42
43 P_lm(x) for l from 0 to n-2+m.
44
45 gsl_sf_legendre_sphPlm
46
47 Signature: (double x(); double [o]y(); double [o]e(); int l; int m)
48
49 P_lm(x), normalized properly for use in spherical harmonics
50
51 gsl_sf_legendre_sphPlm_array
52
53 Signature: (double x(); double [o]y(num); int n=>num; int m)
54
55 P_lm(x), normalized properly for use in spherical harmonics for l from
56 0 to n-2+m.
57
58 gsl_sf_conicalP_half
59
60 Signature: (double x(); double [o]y(); double [o]e(); double lambda)
61
62 Irregular Spherical Conical Function P^{1/2}_{-1/2 + I lambda}(x)
63
64 gsl_sf_conicalP_mhalf
65
66 Signature: (double x(); double [o]y(); double [o]e(); double lambda)
67
68 Regular Spherical Conical Function P^{-1/2}_{-1/2 + I lambda}(x)
69
70 gsl_sf_conicalP_0
71
72 Signature: (double x(); double [o]y(); double [o]e(); double lambda)
73
74 Conical Function P^{0}_{-1/2 + I lambda}(x)
75
76 gsl_sf_conicalP_1
77
78 Signature: (double x(); double [o]y(); double [o]e(); double lambda)
79
80 Conical Function P^{1}_{-1/2 + I lambda}(x)
81
82 gsl_sf_conicalP_sph_reg
83
84 Signature: (double x(); double [o]y(); double [o]e(); int l; double lambda)
85
86 Regular Spherical Conical Function P^{-1/2-l}_{-1/2 + I lambda}(x)
87
88 gsl_sf_conicalP_cyl_reg_e
89
90 Signature: (double x(); double [o]y(); double [o]e(); int m; double lambda)
91
92 Regular Cylindrical Conical Function P^{-m}_{-1/2 + I lambda}(x)
93
94 gsl_sf_legendre_H3d
95
96 Signature: (double [o]y(); double [o]e(); int l; double lambda; double eta)
97
98 lth radial eigenfunction of the Laplacian on the 3-dimensional hyper‐
99 bolic space.
100
101 gsl_sf_legendre_H3d_array
102
103 Signature: (double [o]y(num); int l=>num; double lambda; double eta)
104
105 Array of H3d(ell), for l from 0 to n-1.
106
108 This file copyright (C) 1999 Christian Pellegrin <chri@infis.univ.tri‐
109 este.it> All rights reserved. There is no warranty. You are allowed to
110 redistribute this software / documentation under certain conditions.
111 For details, see the file COPYING in the PDL distribution. If this file
112 is separated from the PDL distribution, the copyright notice should be
113 included in the file.
114
115 The GSL SF modules were written by G. Jungman.
116
117
118
119perl v5.8.8 2006-12-02 LEGENDRE(3)