[cl-gsl-cvs] CVS update: cl-gsl/package.lisp

cl-gsl-cvs at common-lisp.net cl-gsl-cvs at common-lisp.net
Fri Apr 22 02:38:08 UTC 2005


Update of /project/cl-gsl/cvsroot/cl-gsl
In directory common-lisp.net:/tmp/cvs-serv14960

Modified Files:
	package.lisp 
Log Message:
Added additional matrix symbols to gsl-array package.

Date: Fri Apr 22 04:38:07 2005
Author: edenny

Index: cl-gsl/package.lisp
diff -u cl-gsl/package.lisp:1.7 cl-gsl/package.lisp:1.8
--- cl-gsl/package.lisp:1.7	Mon Apr 18 02:52:59 2005
+++ cl-gsl/package.lisp	Fri Apr 22 04:38:07 2005
@@ -93,13 +93,15 @@
    #:legendre-hd3-array
    ))
 
-(defpackage #:cl-gsl-vector
-  (:nicknames #:gsl-vector)
+(defpackage #:cl-gsl-array
+  (:nicknames #:gsl-array)
   (:use #:cl #:cl-gsl)
   (:export
-   #:gsl-vec-size
-   #:gsl-vec-element-type
-   #:gsl-vec-ptr
+
+   ;; from vector
+   #:size
+   #:element-type
+   #:ptr
 
    #:free
    #:make-vector
@@ -134,11 +136,15 @@
    #:min-max-values
    #:isnull
    #:gsl->lisp-vector
-   ))
 
-(defpackage #:cl-gsl-matrix
-  (:nicknames #:gsl-matrix)
-  (:use #:cl #:cl-gsl)
-  (:export
-   #:free-matrix
+   ;; from matrix
+   #:make-matrix
+   #:size-rows
+   #:size-cols
+   #:set-identity
+   #:mul-elements
+   #:div-elements
+   #:with-matrix
+   #:with-matrix-copy
+   #:gsl-matrix->lisp-array
    ))




More information about the Cl-gsl-cvs mailing list