~ubuntu-branches/debian/squeeze/maxima/squeeze

« back to all changes in this revision

Viewing changes to src/numerical/slatec.lisp

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2006-10-18 14:52:42 UTC
  • mto: (1.1.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20061018145242-vzyrm5hmxr8kiosf
ImportĀ upstreamĀ versionĀ 5.10.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
(defpackage "SLATEC"
3
 
  (:use "F2CL-LIB" #-gcl "COMMON-LISP" #+gcl "LISP")
 
2
(defpackage :slatec
 
3
  (:use :f2cl-lib :common-lisp)
4
4
  (:export
5
5
   ;; Error functions
6
 
   "DERF" "DERFC"
 
6
   #:derf #:derfc
7
7
 
8
8
   ;; Bessel function: J
9
 
   "DBESJ0" "DBESJ1" "DBESJ" "ZBESJ"
 
9
   #:dbesj0 #:dbesj1 #:dbesj #:zbesj
10
10
 
11
11
   ;; Bessel function: Y
12
 
   "DBESY0" "DBESY1" "DBESY" "ZBESY"
 
12
   #:dbesy0 #:dbesy1 #:dbesy #:zbesy
13
13
 
14
14
   ;; Bessel function: I
15
 
   "DBESI0" "DBESI1" "DBESI" "DBSI0E" "DBSI1E" "ZBESI"
16
 
 
17
 
   ;; Bessel function : K
18
 
   "DBESK0" "DBESK1" "DBESK" "ZBESK"
 
15
   #:dbesi0 #:dbesi1 #:dbesi #:dbsi0e #:dbsi1e #:zbesi
 
16
 
 
17
   ;; Bessel function: K
 
18
   #:dbesk0 #:dbesk1 #:dbesk #:zbesk
 
19
 
 
20
   ;; Bessel function: H
 
21
   #:zbesh
19
22
   
20
23
   ;; Airy functions
21
 
   "DAI"
 
24
   #:dai #:zairy #:djairy #:dbi #:zbiry #:dyairy
22
25
 
23
26
   ;; Exponential integrals
24
 
   "DE1")
 
27
   #:de1
 
28
 
 
29
   ;; Spence's function (related to dilogarithm)
 
30
   #:dspenc
 
31
 
 
32
   ;; Quadpack routines
 
33
   #:dqag #:dqags #:dqagi #:dqawc #:dqawf #:dqawo #:dqaws
 
34
   )
25
35
  (:documentation "Package for the Fortran routines we need from SLATEC"))