From c39c124be1f2cedb87951772cd49dbaac2b2f48a Mon Sep 17 00:00:00 2001 From: liam <liam@a3d8a0fb-c1db-0310-ace7-a616afeb9e30> Date: Tue, 21 Mar 2006 22:52:23 +0000 Subject: [PATCH] Add exponential functions and integrals, some of which need the e10 (scaled) structure. git-svn-id: svn+ssh://pop/opt/space/mathematics/gsl/trunk@2989 a3d8a0fb-c1db-0310-ace7-a616afeb9e30 --- general/conditions.lisp | 6 +- gsll.asd | 4 +- interface.lisp | 6 +- special-functions/bessel.lisp | 5 +- special-functions/exponential-functions.lisp | 95 ++++++++++++++++++++ special-functions/exponential-integrals.lisp | 88 ++++++++++++++++++ 6 files changed, 197 insertions(+), 7 deletions(-) create mode 100644 special-functions/exponential-functions.lisp create mode 100644 special-functions/exponential-integrals.lisp diff --git a/general/conditions.lisp b/general/conditions.lisp index 11c95bd3..6ad55bfe 100644 --- a/general/conditions.lisp +++ b/general/conditions.lisp @@ -3,7 +3,7 @@ ; description: GSL errors ; date: Sat Mar 4 2006 - 18:33 ; author: Liam M. Healy -; modified: Wed Mar 8 2006 - 23:13 +; modified: Tue Mar 21 2006 - 17:13 ;******************************************************** (in-package :gsl) @@ -54,6 +54,10 @@ (31 . "Cannot reach the specified tolerance in gradient") (32 . "End of file"))) +;;; It would be nice to be able to return, or give the option to return, +;;; the portrable equivalent of #.SB-EXT:DOUBLE-FLOAT-POSITIVE-INFINITY +;;; for :EOVRFLW. + (define-condition gsl-error (arithmetic-error) ((gsl-errno :initarg :gsl-errno :reader gsl-errno) (gsl-reason :initarg :gsl-reason :reader gsl-reason) diff --git a/gsll.asd b/gsll.asd index 14ed864e..f42a2ebd 100644 --- a/gsll.asd +++ b/gsll.asd @@ -3,7 +3,7 @@ ; description: Definition of GSLL system ; date: ; author: Liam Healy -; modified: Mon Mar 20 2006 - 22:41 +; modified: Tue Mar 21 2006 - 17:49 ;******************************************************** ;;; $Id: $ @@ -38,4 +38,6 @@ (:file "elliptic-integrals") (:file "elliptic-functions") (:file "error-functions") + (:file "exponential-functions") + (:file "exponential-integrals") )))) diff --git a/interface.lisp b/interface.lisp index 237b4a60..ceac491e 100644 --- a/interface.lisp +++ b/interface.lisp @@ -3,7 +3,7 @@ ; description: Macros to interface GSL functions. ; date: Mon Mar 6 2006 - 22:35 ; author: Liam M. Healy -; modified: Tue Mar 21 2006 - 11:39 +; modified: Tue Mar 21 2006 - 17:11 ;******************************************************** (in-package :gsl) @@ -79,6 +79,10 @@ and a scaling exponent e10, such that the value is val*10^e10." (sf-result `((cffi:foreign-slot-value ,(first decl) 'sf-result 'val) (cffi:foreign-slot-value ,(first decl) 'sf-result 'err))) + (sf-result-e10 + `((cffi:foreign-slot-value ,(first decl) 'sf-result-e10 'val) + (cffi:foreign-slot-value ,(first decl) 'sf-result-e10 'e10) + (cffi:foreign-slot-value ,(first decl) 'sf-result-e10 'err))) (:double `((cffi:mem-ref ,(first decl) :double)))))) (defun wfo-declare (d) diff --git a/special-functions/bessel.lisp b/special-functions/bessel.lisp index bb274af0..c6637067 100644 --- a/special-functions/bessel.lisp +++ b/special-functions/bessel.lisp @@ -3,14 +3,11 @@ ; description: Bessel functions ; date: Fri Mar 17 2006 - 18:42 ; author: Liam M. Healy -; modified: Tue Mar 21 2006 - 10:06 +; modified: Tue Mar 21 2006 - 13:50 ;******************************************************** (in-package :gsl) -(eval-when (:compile-toplevel :load-toplevel :execute) - (export '())) - ;;;;**************************************************************************** ;;;; Regular Cylindrical Bessel Functions ;;;;**************************************************************************** diff --git a/special-functions/exponential-functions.lisp b/special-functions/exponential-functions.lisp new file mode 100644 index 00000000..006a14c8 --- /dev/null +++ b/special-functions/exponential-functions.lisp @@ -0,0 +1,95 @@ +;******************************************************** +; file: exponential-functions.lisp +; description: Exponential functions +; date: Tue Mar 21 2006 - 17:05 +; author: Liam M. Healy +; modified: Tue Mar 21 2006 - 17:30 +;******************************************************** +;;; $Id: $ + +(in-package :gsl) + +;;;;**************************************************************************** +;;;; Exponential Functions +;;;;**************************************************************************** + +(defun-sf gsl-exp ((x :double)) + "gsl_sf_exp_e" + :documentation + "The exponential function." + :return (sf-result)) + +(defun-sf exp-scaled ((x :double)) + "gsl_sf_exp_e10_e" + :documentation + "The exponential function scaled. This function may be useful if the value +of @math{\exp(x)} would overflow the numeric range of @code{double}." + :return (sf-result-e10)) + +(defun-sf exp-mult ((x :double) (y :double)) + "gsl_sf_exp_mult_e" + :documentation + "Exponentiate @var{x} and multiply by the factor @var{y} to return the product @math{y \exp(x)}." + :return (sf-result)) + +(defun-sf exp-mult-scaled ((x :double) (y :double)) + "gsl_sf_exp_mult_e10_e" + :documentation + "The product @math{y \exp(x)} with extended numeric range." + :return (sf-result-e10)) + +;;;;**************************************************************************** +;;;; Relative Exponential Functions +;;;;**************************************************************************** + +(defun-sf expm1 ((x :double)) + "gsl_sf_expm1_e" + :documentation + "@math{\exp(x)-1} using an algorithm that is accurate for small @math{x}." + :return (sf-result)) + +(defun-sf exprel ((x :double)) + "gsl_sf_exprel_e" + :documentation + "@math{(\exp(x)-1)/x} using an algorithm that is accurate for small @math{x}. For small @math{x} the algorithm is based on the expansion @math{(\exp(x)-1)/x = 1 + x/2 + x^2/(2*3) + x^3/(2*3*4) + \dots}." + :return (sf-result)) + +(defun-sf exprel-2 ((x :double)) + "gsl_sf_exprel_2_e" + :documentation + "@math{2(\exp(x)-1-x)/x^2} using an algorithm that is accurate for small @math{x}. For small @math{x} the algorithm is based on the expansion @math{2(\exp(x)-1-x)/x^2 = 1 + x/3 + x^2/(3*4) + x^3/(3*4*5) + \dots}." + :return (sf-result)) + +(defun-sf exprel-n ((x :double)) + "gsl_sf_exprel_n_e" + :documentation + "@math{N}-relative exponential, which is the @var{n}-th generalization of the functions @code{gsl_sf_exprel} and @code{gsl_sf_exprel2}." + :return (sf-result)) + +;;;;**************************************************************************** +;;;; Exponentiation With Error Estimate +;;;;**************************************************************************** + +(defun-sf exp-err ((x :double) (dx :double)) + "gsl_sf_exp_err_e" + :documentation + "Exponentiate @var{x} with an associated absolute error @var{dx}." + :return (sf-result)) + +(defun-sf exp-err-scaled ((x :double) (dx :double)) + "gsl_sf_exp_err_e10_e" + :documentation + "Exponentiate @var{x} with an associated absolute error @var{dx} and with extended numeric range." + :return (sf-result)) + +(defun-sf exp-mult-err ((x :double) (dx :double) (y :double) (dy :double)) + "gsl_sf_exp_mult_err_e" + :documentation + "The product @math{y \exp(x)} for the quantities @var{x}, @var{y} with associated absolute errors @var{dx}, @var{dy}." + :return (sf-result)) + +(defun-sf exp-mult-err-scaled ((x :double) (y :double)) + "gsl_sf_exp_mult_err_e10_e" + :documentation + "The product @math{y \exp(x)} for the quantities @var{x}, @var{y} with associated absolute errors @var{dx}, @var{dy} and with extended numeric range." + :return (sf-result-e10)) diff --git a/special-functions/exponential-integrals.lisp b/special-functions/exponential-integrals.lisp new file mode 100644 index 00000000..64b11932 --- /dev/null +++ b/special-functions/exponential-integrals.lisp @@ -0,0 +1,88 @@ +;******************************************************** +; file: exponential-integrals.lisp +; description: Exponential integrals +; date: Tue Mar 21 2006 - 17:37 +; author: Liam M. Healy +; modified: Tue Mar 21 2006 - 17:48 +;******************************************************** +;;; $Id: $ + +(in-package :gsl) + +;;;;**************************************************************************** +;;;; Exponential Integral +;;;;**************************************************************************** + +(defun-sf expint-E1 ((x :double)) + "gsl_sf_expint_E1_e" + :documentation + "The exponential integral @math{E_1(x)}, E_1(x) := \Re \int_1^\infty dt \exp(-xt)/t.." + :return (sf-result)) + +(defun-sf expint-E2 ((x :double)) + "gsl_sf_expint_E2_e" + :documentation + "The second-order exponential integral @math{E_2(x)}, E_2(x) := \Re \int_1^\infty dt \exp(-xt)/t^2." + :return (sf-result)) + +;;;;**************************************************************************** +;;;; Ei +;;;;**************************************************************************** + +(defun-sf expint-Ei ((x :double)) + "gsl_sf_expint_Ei_e" + :documentation + "The exponential integral @math{Ei(x)}, Ei(x) := - PV\left(\int_{-x}^\infty dt \exp(-t)/t\right)." + :return (sf-result)) + +;;;;**************************************************************************** +;;;; Hyperbolic Integrals +;;;;**************************************************************************** + +(defun-sf Shi ((x :double)) + "gsl_sf_Shi_e" + :documentation + "The integral @math{Shi(x) = \int_0^x dt \sinh(t)/t}." + :return (sf-result)) + +(defun-sf Chi ((x :double)) + "gsl_sf_Chi_e" + :documentation + "The integral @math{ Chi(x) := \Re[ \gamma_E + \log(x) + \int_0^x dt (\cosh[t]-1)/t] }, where @math{\gamma_E} is the Euler constant." + :return (sf-result)) + +;;;;**************************************************************************** +;;;; Ei-3 +;;;;**************************************************************************** + +(defun-sf expint-3 ((x :double)) + "gsl_sf_expint_3_e" + :documentation + "The third-order exponential integral @math{Ei_3(x) = \int_0^xdt \exp(-t^3)} for @c{$x \ge 0$} @math{x >= 0}." + :return (sf-result)) + +;;;;**************************************************************************** +;;;; Trigonometric Integrals +;;;;**************************************************************************** + +(defun-sf Si ((x :double)) + "gsl_sf_Si_e" + :documentation + "The Sine integral @math{Si(x) = \int_0^x dt \sin(t)/t}." + :return (sf-result)) + +(defun-sf Ci ((x :double)) + "gsl_sf_Ci_e" + :documentation + "The Cosine integral @math{Ci(x) = -\int_x^\infty dt \cos(t)/t} for @math{x > 0}." + :return (sf-result)) + +;;;;**************************************************************************** +;;;; Trigonometric Integrals +;;;;**************************************************************************** + +(defun-sf atanint ((x :double)) + "gsl_sf_atanint_e" + :documentation + "The Arctangent integral, which is defined as @math{AtanInt(x) = \int_0^x dt \arctan(t)/t}." + :return (sf-result)) -- GitLab