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 Signature: (double x(); double [o]y(); double [o]e())
17
18 E_1(x) := Re[ Integrate[ Exp[-xt]/t, {t,1,Infinity}] ]
19
20 gsl_sf_expint_E1 does not process bad values. It will set the bad-
21 value flag of all output piddles if the flag is set for any of the
22 input piddles.
23
24 gsl_sf_expint_E2
25 Signature: (double x(); double [o]y(); double [o]e())
26
27 E_2(x) := Re[ Integrate[ Exp[-xt]/t^2, {t,1,Infity}] ]
28
29 gsl_sf_expint_E2 does not process bad values. It will set the bad-
30 value flag of all output piddles if the flag is set for any of the
31 input piddles.
32
33 gsl_sf_expint_Ei
34 Signature: (double x(); double [o]y(); double [o]e())
35
36 Ei(x) := PV Integrate[ Exp[-t]/t, {t,-x,Infinity}]
37
38 gsl_sf_expint_Ei does not process bad values. It will set the bad-
39 value flag of all output piddles if the flag is set for any of the
40 input piddles.
41
42 gsl_sf_Shi
43 Signature: (double x(); double [o]y(); double [o]e())
44
45 Shi(x) := Integrate[ Sinh[t]/t, {t,0,x}]
46
47 gsl_sf_Shi does not process bad values. It will set the bad-value flag
48 of all output piddles if the flag is set for any of the input piddles.
49
50 gsl_sf_Chi
51 Signature: (double x(); double [o]y(); double [o]e())
52
53 Chi(x) := Re[ M_EULER + log(x) + Integrate[(Cosh[t]-1)/t, {t,0,x}] ]
54
55 gsl_sf_Chi does not process bad values. It will set the bad-value flag
56 of all output piddles if the flag is set for any of the input piddles.
57
58 gsl_sf_expint_3
59 Signature: (double x(); double [o]y(); double [o]e())
60
61 Ei_3(x) := Integral[ Exp[-t^3], {t,0,x}]
62
63 gsl_sf_expint_3 does not process bad values. It will set the bad-value
64 flag of all output piddles if the flag is set for any of the input
65 piddles.
66
67 gsl_sf_Si
68 Signature: (double x(); double [o]y(); double [o]e())
69
70 Si(x) := Integrate[ Sin[t]/t, {t,0,x}]
71
72 gsl_sf_Si does not process bad values. It will set the bad-value flag
73 of all output piddles if the flag is set for any of the input piddles.
74
75 gsl_sf_Ci
76 Signature: (double x(); double [o]y(); double [o]e())
77
78 Ci(x) := -Integrate[ Cos[t]/t, {t,x,Infinity}]
79
80 gsl_sf_Ci does not process bad values. It will set the bad-value flag
81 of all output piddles if the flag is set for any of the input piddles.
82
83 gsl_sf_atanint
84 Signature: (double x(); double [o]y(); double [o]e())
85
86 AtanInt(x) := Integral[ Arctan[t]/t, {t,0,x}]
87
88 gsl_sf_atanint does not process bad values. It will set the bad-value
89 flag of all output piddles if the flag is set for any of the input
90 piddles.
91
93 This file copyright (C) 1999 Christian Pellegrin
94 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
95 You are allowed to redistribute this software / documentation under
96 certain conditions. For details, see the file COPYING in the PDL
97 distribution. If this file is separated from the PDL distribution, the
98 copyright notice should be included in the file.
99
100 The GSL SF modules were written by G. Jungman.
101
102
103
104perl v5.12.3 2011-03-31 EXPINT(3)