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