1ZETA(3) User Contributed Perl Documentation ZETA(3)
2
3
4
6 PDL::GSLSF::ZETA - 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_zeta
16 Signature: (double x(); double [o]y(); double [o]e())
17
18 Riemann Zeta Function zeta(x) = Sum[ k^(-s), {k,1,Infinity} ], s != 1.0
19
20 gsl_sf_zeta 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_hzeta
25 Signature: (double s(); double [o]y(); double [o]e(); double q)
26
27 Hurwicz Zeta Function zeta(s,q) = Sum[ (k+q)^(-s), {k,0,Infinity} ]
28
29 gsl_sf_hzeta 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_eta
34 Signature: (double x(); double [o]y(); double [o]e())
35
36 Eta Function eta(s) = (1-2^(1-s)) zeta(s)
37
38 gsl_sf_eta does not process bad values. It will set the bad-value flag
39 of all output piddles if the flag is set for any of the input piddles.
40
42 This file copyright (C) 1999 Christian Pellegrin
43 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
44 You are allowed to redistribute this software / documentation under
45 certain conditions. For details, see the file COPYING in the PDL
46 distribution. If this file is separated from the PDL distribution, the
47 copyright notice should be included in the file.
48
49 The GSL SF modules were written by G. Jungman.
50
51
52
53perl v5.12.3 2011-03-31 ZETA(3)