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