1FERMI_DIRAC(3) User Contributed Perl Documentation FERMI_DIRAC(3)
2
3
4
6 PDL::GSLSF::FERMI_DIRAC - PDL interface to GSL Special Functions
7
9 This is an interface to the Special Function package present in the GNU
10 Scientific Library. Please note that:
11
12 Complete Fermi-Dirac Integrals:
13
14 F_j(x) := 1/Gamma[j+1] Integral[ t^j /(Exp[t-x] + 1), {t,0,Infinity}]
15
16 Incomplete Fermi-Dirac Integrals:
17
18 F_j(x,b) := 1/Gamma[j+1] Integral[ t^j /(Exp[t-x] + 1), {t,b,Infinity}]
19
23 gsl_sf_fermi_dirac_int
24
25 Signature: (double x(); double [o]y(); double [o]e(); int j)
26
27 Complete integral F_j(x) for integer j
28
29 gsl_sf_fermi_dirac_mhalf
30
31 Signature: (double x(); double [o]y(); double [o]e())
32
33 Complete integral F_{-1/2}(x)
34
35 gsl_sf_fermi_dirac_half
36
37 Signature: (double x(); double [o]y(); double [o]e())
38
39 Complete integral F_{1/2}(x)
40
41 gsl_sf_fermi_dirac_3half
42
43 Signature: (double x(); double [o]y(); double [o]e())
44
45 Complete integral F_{3/2}(x)
46
47 gsl_sf_fermi_dirac_inc_0
48
49 Signature: (double x(); double [o]y(); double [o]e(); double b)
50
51 Incomplete integral F_0(x,b) = ln(1 + e^(b-x)) - (b-x)
52
54 This file copyright (C) 1999 Christian Pellegrin <chri@infis.univ.tri‐
55 este.it> All rights reserved. There is no warranty. You are allowed to
56 redistribute this software / documentation under certain conditions.
57 For details, see the file COPYING in the PDL distribution. If this file
58 is separated from the PDL distribution, the copyright notice should be
59 included in the file.
60
61 The GSL SF modules were written by G. Jungman.
62
63
64
65perl v5.8.8 2006-12-02 FERMI_DIRAC(3)