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
17 Signature: (double x(); double [o]y(); double [o]e())
18
19 Exponential
20
21 gsl_sf_exprel_n
22
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_exp_err
29
30 Signature: (double x(); double dx(); double [o]y(); double [o]e())
31
32 Exponential of a quantity with given error.
33
35 This file copyright (C) 1999 Christian Pellegrin <chri@infis.univ.tri‐
36 este.it> All rights reserved. There is no warranty. You are allowed to
37 redistribute this software / documentation under certain conditions.
38 For details, see the file COPYING in the PDL distribution. If this file
39 is separated from the PDL distribution, the copyright notice should be
40 included in the file.
41
42 The GSL SF modules were written by G. Jungman.
43
44
45
46perl v5.8.8 2006-12-02 EXP(3)