1TRANSPORT(3) User Contributed Perl Documentation TRANSPORT(3)
2
3
4
6 PDL::GSLSF::PSI - 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
12 Transport function:
13 J(n,x) := Integral[ t^n e^t /(e^t - 1)^2, {t,0,x}]
14
18 gsl_sf_transport_2
19 Signature: (double x(); double [o]y(); double [o]e())
20
21 J(2,x)
22
23 gsl_sf_transport_2 does not process bad values. It will set the bad-
24 value flag of all output piddles if the flag is set for any of the
25 input piddles.
26
27 gsl_sf_transport_3
28 Signature: (double x(); double [o]y(); double [o]e())
29
30 J(3,x)
31
32 gsl_sf_transport_3 does not process bad values. It will set the bad-
33 value flag of all output piddles if the flag is set for any of the
34 input piddles.
35
36 gsl_sf_transport_4
37 Signature: (double x(); double [o]y(); double [o]e())
38
39 J(4,x)
40
41 gsl_sf_transport_4 does not process bad values. It will set the bad-
42 value flag of all output piddles if the flag is set for any of the
43 input piddles.
44
45 gsl_sf_transport_5
46 Signature: (double x(); double [o]y(); double [o]e())
47
48 J(5,x)
49
50 gsl_sf_transport_5 does not process bad values. It will set the bad-
51 value flag of all output piddles if the flag is set for any of the
52 input piddles.
53
55 This file copyright (C) 1999 Christian Pellegrin
56 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
57 You are allowed to redistribute this software / documentation under
58 certain conditions. For details, see the file COPYING in the PDL
59 distribution. If this file is separated from the PDL distribution, the
60 copyright notice should be included in the file.
61
62 The GSL SF modules were written by G. Jungman.
63
64
65
66perl v5.12.3 2011-03-31 TRANSPORT(3)