1EXPINT(3) User Contributed Perl Documentation EXPINT(3)
2
3
4
6 PDL::GSLSF::EXPINT - 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_expint_E1
16
17 Signature: (double x(); double [o]y(); double [o]e())
18
19 E_1(x) := Re[ Integrate[ Exp[-xt]/t, {t,1,Infinity}] ]
20
21 gsl_sf_expint_E2
22
23 Signature: (double x(); double [o]y(); double [o]e())
24
25 E_2(x) := Re[ Integrate[ Exp[-xt]/t^2, {t,1,Infity}] ]
26
27 gsl_sf_expint_Ei
28
29 Signature: (double x(); double [o]y(); double [o]e())
30
31 Ei(x) := PV Integrate[ Exp[-t]/t, {t,-x,Infinity}]
32
33 gsl_sf_Shi
34
35 Signature: (double x(); double [o]y(); double [o]e())
36
37 Shi(x) := Integrate[ Sinh[t]/t, {t,0,x}]
38
39 gsl_sf_Chi
40
41 Signature: (double x(); double [o]y(); double [o]e())
42
43 Chi(x) := Re[ M_EULER + log(x) + Integrate[(Cosh[t]-1)/t, {t,0,x}] ]
44
45 gsl_sf_expint_3
46
47 Signature: (double x(); double [o]y(); double [o]e())
48
49 Ei_3(x) := Integral[ Exp[-t^3], {t,0,x}]
50
51 gsl_sf_Si
52
53 Signature: (double x(); double [o]y(); double [o]e())
54
55 Si(x) := Integrate[ Sin[t]/t, {t,0,x}]
56
57 gsl_sf_Ci
58
59 Signature: (double x(); double [o]y(); double [o]e())
60
61 Ci(x) := -Integrate[ Cos[t]/t, {t,x,Infinity}]
62
63 gsl_sf_atanint
64
65 Signature: (double x(); double [o]y(); double [o]e())
66
67 AtanInt(x) := Integral[ Arctan[t]/t, {t,0,x}]
68
70 This file copyright (C) 1999 Christian Pellegrin <chri@infis.univ.tri‐
71 este.it> All rights reserved. There is no warranty. You are allowed to
72 redistribute this software / documentation under certain conditions.
73 For details, see the file COPYING in the PDL distribution. If this file
74 is separated from the PDL distribution, the copyright notice should be
75 included in the file.
76
77 The GSL SF modules were written by G. Jungman.
78
79
80
81perl v5.8.8 2006-12-02 EXPINT(3)