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