1EXP(3) User Contributed Perl Documentation EXP(3)
2
3
4
6 PDL::GSLSF::EXP - 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_exp
16 Signature: (double x(); double [o]y(); double [o]e())
17
18 Exponential
19
20 gsl_sf_exp does not process bad values. It will set the bad-value flag
21 of all output piddles if the flag is set for any of the input piddles.
22
23 gsl_sf_exprel_n
24 Signature: (double x(); double [o]y(); double [o]e(); int n)
25
26 N-relative Exponential. exprel_N(x) = N!/x^N (exp(x) - Sum[x^k/k!,
27 {k,0,N-1}]) = 1 + x/(N+1) + x^2/((N+1)(N+2)) + ... = 1F1(1,1+N,x)
28
29 gsl_sf_exprel_n does not process bad values. It will set the bad-value
30 flag of all output piddles if the flag is set for any of the input
31 piddles.
32
33 gsl_sf_exp_err
34 Signature: (double x(); double dx(); double [o]y(); double [o]e())
35
36 Exponential of a quantity with given error.
37
38 gsl_sf_exp_err does not process bad values. It will set the bad-value
39 flag of all output piddles if the flag is set for any of the input
40 piddles.
41
43 This file copyright (C) 1999 Christian Pellegrin
44 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
45 You are allowed to redistribute this software / documentation under
46 certain conditions. For details, see the file COPYING in the PDL
47 distribution. If this file is separated from the PDL distribution, the
48 copyright notice should be included in the file.
49
50 The GSL SF modules were written by G. Jungman.
51
52
53
54perl v5.12.3 2011-03-31 EXP(3)