1PSI(3) User Contributed Perl Documentation PSI(3)
2
3
4
6 PDL::GSLSF::PSI - 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
12 Poly-Gamma Functions
13
14 psi(m,x) := (d/dx)^m psi(0,x) = (d/dx)^{m+1} log(gamma(x))
15
18 gsl_sf_psi
19 Signature: (double x(); double [o]y(); double [o]e())
20
21 Di-Gamma Function psi(x).
22
23 gsl_sf_psi does not process bad values. It will set the bad-value flag
24 of all output ndarrays if the flag is set for any of the input
25 ndarrays.
26
27 gsl_sf_psi_1piy
28 Signature: (double x(); double [o]y(); double [o]e())
29
30 Di-Gamma Function Re[psi(1 + I y)]
31
32 gsl_sf_psi_1piy does not process bad values. It will set the bad-value
33 flag of all output ndarrays if the flag is set for any of the input
34 ndarrays.
35
36 gsl_sf_psi_n
37 Signature: (double x(); double [o]y(); double [o]e(); int n)
38
39 Poly-Gamma Function psi^(n)(x)
40
41 gsl_sf_psi_n does not process bad values. It will set the bad-value
42 flag of all output ndarrays if the flag is set for any of the input
43 ndarrays.
44
46 This file copyright (C) 1999 Christian Pellegrin
47 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
48 You are allowed to redistribute this software / documentation under
49 certain conditions. For details, see the file COPYING in the PDL
50 distribution. If this file is separated from the PDL distribution, the
51 copyright notice should be included in the file.
52
53 The GSL SF modules were written by G. Jungman.
54
55
56
57perl v5.34.0 2021-08-16 PSI(3)