|
ePDF
1.1.0
A QED evolution library
|
Go to the documentation of this file.
16 std::complex<double>
psi(std::complex<double>
const& z);
23 inline double psi(
double const& z)
25 std::complex<double> zc(z, 0.0);
26 return psi(zc).real();
35 std::complex<double>
dpsi(std::complex<double>
const& z,
int const& m);
42 inline double dpsi(
double const& z,
int const& m)
44 std::complex<double> zc(z, 0.0);
45 return dpsi(zc, m).real();
56 double wgplg(
int const& n,
int const& p,
double const& x);
65 inline double polylog(
int const& n,
double const& x) {
return wgplg(n-1,1,x); }
double dilog(double const &x)
function for the computation of the dilogarithm
Definition: specialfunctions.h:72
std::complex< double > dpsi(std::complex< double > const &z, int const &m)
function for the computation of the complex polygamma function
double polylog(int const &n, double const &x)
function for the computation of the polylogarithms
Definition: specialfunctions.h:65
double wgplg(int const &n, int const &p, double const &x)
function for the computation of the Nielsen's generalized dilogs.
double trilog(double const &x)
function for the computation of the trilogarithm
Definition: specialfunctions.h:79
std::complex< double > psi(std::complex< double > const &z)
function for the computation of the complex digamma function