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 piddles if the flag is set for any of the input piddles.
25
26 gsl_sf_psi_1piy
27 Signature: (double x(); double [o]y(); double [o]e())
28
29 Di-Gamma Function Re[psi(1 + I y)]
30
31 gsl_sf_psi_1piy does not process bad values. It will set the bad-value
32 flag of all output piddles if the flag is set for any of the input
33 piddles.
34
35 gsl_sf_psi_n
36 Signature: (double x(); double [o]y(); double [o]e(); int n)
37
38 Poly-Gamma Function psi^(n)(x)
39
40 gsl_sf_psi_n does not process bad values. It will set the bad-value
41 flag of all output piddles if the flag is set for any of the input
42 piddles.
43
45 This file copyright (C) 1999 Christian Pellegrin
46 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
47 You are allowed to redistribute this software / documentation under
48 certain conditions. For details, see the file COPYING in the PDL
49 distribution. If this file is separated from the PDL distribution, the
50 copyright notice should be included in the file.
51
52 The GSL SF modules were written by G. Jungman.
53
54
55
56perl v5.32.0 2020-09-17 PSI(3)