diff --git a/basis-splines.lisp b/basis-splines.lisp index 5859c807707324591de99d5142edac40aa8ef93d..d15637a92544473179d3edb61c43db1ce1ab4250 100644 --- a/basis-splines.lisp +++ b/basis-splines.lisp @@ -1,6 +1,6 @@ ;; Basis splines. ;; Liam Healy 2008-02-18 14:43:20EST basis-splines.lisp -;; Time-stamp: <2008-02-23 19:36:35EST basis-splines.lisp> +;; Time-stamp: <2008-03-09 19:30:56EDT basis-splines.lisp> ;; $Id$ (in-package :gsl) @@ -74,13 +74,13 @@ (bw (basis-spline order nbreak)) (mw (fit-workspace ndata ncoeffs)) (rng (random-number-generator *mt19937* 0)) - (B (vector-double ncoeffs)) - (c (vector-double ncoeffs)) - (cov (matrix-double ncoeffs ncoeffs)) - (w (vector-double ndata)) - (x (vector-double ndata)) - (y (vector-double ndata)) - (Xmatrix (matrix-double ndata ncoeffs)) + (B (vector-double-float ncoeffs)) + (c (vector-double-float ncoeffs)) + (cov (matrix-double-float ncoeffs ncoeffs)) + (w (vector-double-float ndata)) + (x (vector-double-float ndata)) + (y (vector-double-float ndata)) + (Xmatrix (matrix-double-float ndata ncoeffs)) (sigma 0.1d0)) ;; The data to be fitted. (dotimes (i ndata) diff --git a/data/block.lisp b/data/block.lisp index d4f9711ec08a15236e61102849614b119ee0820c..1d9a600a5853573136f9b186c03021e0e7138b35 100644 --- a/data/block.lisp +++ b/data/block.lisp @@ -1,6 +1,6 @@ ;; Blocks of data ;; Liam Healy, Mon Mar 27 2006 - 12:28 -;; Time-stamp: <2008-02-17 09:18:05EST block.lisp> +;; Time-stamp: <2008-03-09 18:54:10EDT block.lisp> ;; $Id$ (in-package :gsl) @@ -10,7 +10,12 @@ (size size) (data :pointer)) -(defdata "block" block-double double-float) -(defdata "block_float" block-single single-float) -(defdata "block_complex" block-complex complex) -(defdata "block_int" block-fixnum fixnum) +(add-data-class block double-float block-double-float block "block") +(add-data-class block single-float block-single-float block "block") +(add-data-class block fixnum block-fixnum block "block") +(add-data-class block complex block-complex block "block") + +(defdata block double-float) +(defdata block single-float) +(defdata block fixnum) +(defdata block complex) diff --git a/data/combination.lisp b/data/combination.lisp index b57a9000bfae991317a26f33623623d2d21b7b26..3e44d0af65f891022c169e96dc9859afbbad0bbb 100644 --- a/data/combination.lisp +++ b/data/combination.lisp @@ -1,6 +1,6 @@ ;; Combinations ;; Liam Healy, Sun Mar 26 2006 - 11:51 -;; Time-stamp: <2008-02-23 18:49:21EST combination.lisp> +;; Time-stamp: <2008-03-09 22:07:29EDT combination.lisp> ;; $Id$ (in-package :gsl) @@ -16,16 +16,17 @@ (data :pointer)) ;;; Allocation, freeing, reading and writing -(defdata "combination" combination unsigned-byte gsl-data 2) +(add-data-class combination fixnum combination gsl-data "combination") +(defdata combination fixnum 2 "") -(defmethod gsl-array ((object gsl-combination)) +(defmethod gsl-array ((object combination)) (foreign-slot-value (pointer object) 'gsl-combination-c 'data)) ;;;;**************************************************************************** ;;;; Getting values ;;;;**************************************************************************** -(defmfun maref ((combination gsl-combination) &rest indices) +(defmfun maref ((combination combination) &rest indices) "gsl_combination_get" (((pointer combination) :pointer) ((first indices) size)) :type :method @@ -33,7 +34,7 @@ :documentation ; FDL "The ith element of the combination.") -(defmethod data ((object gsl-combination) &optional sequence) +(defmethod data ((object combination) &optional sequence) (let ((seq (or sequence (make-sequence 'list (combination-size object))))) (loop for i from 0 @@ -101,7 +102,7 @@ "A pointer to the array of elements in the combination.") |# -(defmfun data-valid ((combination gsl-combination)) +(defmfun data-valid ((combination combination)) "gsl_combination_valid" (((pointer combination) :pointer)) :type :method diff --git a/data/data.lisp b/data/data.lisp index ac01dd5574349077ed0fc6babc915c8c3e875f84..39f70d0614efbd783110fb387b41bf1962c9b2f1 100644 --- a/data/data.lisp +++ b/data/data.lisp @@ -1,6 +1,6 @@ ;; Using GSL bulk data (vectors, matrices, etc.) storage. ;; Liam Healy, Sun Mar 26 2006 - 16:32 -;; Time-stamp: <2008-02-23 18:57:18EST data.lisp> +;; Time-stamp: <2008-03-10 21:15:40EDT data.lisp> ;; $Id$ (in-package :gsl) @@ -36,10 +36,12 @@ (defmethod print-object ((object gsl-data) stream) (print-data-object object *print-array* stream)) +(defparameter *print-data-contents* t) + (defun print-data-object (object contents stream) "Print the data object to the stream, possibly showing contents." (print-unreadable-object (object stream :type t :identity t) - (when contents + (when (and contents *print-data-contents*) (princ (data object) stream)))) (defgeneric gsl-array (object) @@ -53,7 +55,7 @@ "The second dimension of the object." (second (storage-size object))) -(defgeneric cl-base-type (object) +(defgeneric cl-elt-type (object) (:documentation "The CL type of an element.")) ;;; Accessing elements @@ -96,13 +98,6 @@ ;;; (args (loop for i below dimensions collect (intern (format nil "I~d" i)))) ;;; (mapcar (lambda (v) `(,v size)) args) -(defparameter *data-name-alist* - '((FIXNUM . "_int") - (SINGLE . "_float") - (DOUBLE . "") - ;;(LONG-DOUBLE . "_long_double") - (COMPLEX . "_complex"))) - (defmacro data-go (type matrixp) "Define the letm function for data types." (if matrixp ; Matrix (two indices) @@ -151,96 +146,108 @@ (lambda (symb) `(unless (numberp ,argsymb) (setf (data ,symb) ,argsymb))) (lambda () (list argsymb size-or-initial))))))))) -(defmacro defdata - (c-string cl-symbol cl-base-type - &optional (superclass 'gsl-data) (dimensions 1)) +(defparameter *data-class-name* nil + "A list classes, each consisting of a list + superclass, CL element type, class, GSL splice name.") +(defmacro add-data-class (category element-type class superclass GSL-string) + `(eval-when (:compile-toplevel :load-toplevel :execute) + (pushnew (list ',category ',element-type ',class ',superclass ',GSL-string) + *data-class-name* + :test #'equal))) +(defun data-type-lookup (category element-type) + (find (list category element-type) + *data-class-name* + :key (lambda (l) (subseq l 0 2)) + :test #'equal)) +(defun data-class-name (category element-type) + (third (data-type-lookup category element-type))) +(defun data-superclass-name (category element-type) + (fourth (data-type-lookup category element-type))) +(defun data-gsl-string (category element-type) + (fifth (data-type-lookup category element-type))) + +(defmacro defdata (category cl-elt-type &optional (dimensions 1) splice-name) "For the type named in the string, define the allocator (gsl-*-alloc), zero allocator (gsl-*-calloc), freeing (gsl-*-free), binary writing (binary-*-write) and reading (binary-*-read), formatted writing (write-*-formatted) and reading (read-*-formatted) functions." - ;; Need to remove duplicates from *data-name-alist* (flet ((gsl-name (function-name) - (format nil "gsl_~a_~a" c-string function-name))) + (format nil "gsl_~a~a_~a" + (data-gsl-string category cl-elt-type) + (or splice-name + (lookup-splice-name cl-elt-type)) function-name))) (let* ((cargs (loop for i below dimensions collect `((nth ,i (storage-size object)) size))) - (object-name (make-symbol-from-strings *gsl-prefix* cl-symbol))) + (class-name (data-class-name category cl-elt-type))) `(progn - (defclass ,object-name (,superclass) - ((cl-base-type :initform ',cl-base-type :reader cl-base-type - :allocation :class))) - (data-go ,cl-symbol - ,(or (member superclass '(gsl-matrix)) (member object-name '(gsl-combination)))) - (defmfun alloc ((object ,object-name)) + (defclass ,class-name (,(data-superclass-name category cl-elt-type)) + ((cl-elt-type :initform ',cl-elt-type :reader cl-elt-type + :allocation :class))) + (data-go ,class-name + ,(or (member category '(matrix combination)))) + (defmfun alloc ((object ,class-name)) ,(gsl-name "alloc") ,cargs :type :method :c-return (cr :pointer) :return ((assign-pointer object cr))) - (defmfun calloc ((object ,object-name)) + (defmfun calloc ((object ,class-name)) ,(gsl-name "calloc") ,cargs :type :method :c-return (cr :pointer) :return ((assign-pointer object cr))) - (defmfun free ((object ,object-name)) + (defmfun free ((object ,class-name)) ,(gsl-name "free") (((pointer object) :pointer)) :type :method :c-return :void) - (defmfun write-binary ((object ,object-name) stream) + (defmfun write-binary ((object ,class-name) stream) ,(gsl-name "fwrite") ((stream :pointer) ((pointer object) :pointer)) :type :method) - (defmfun read-binary ((object ,object-name) stream) + (defmfun read-binary ((object ,class-name) stream) ,(gsl-name "fread") ((stream :pointer) ((pointer object) :pointer)) :type :method) - (defmfun write-formatted ((object ,object-name) stream format) + (defmfun write-formatted ((object ,class-name) stream format) ,(gsl-name "fprintf") ((stream :pointer) ((pointer object) :pointer) (format :string)) :type :method) - (defmfun read-formatted ((object ,object-name) stream format) + (defmfun read-formatted ((object ,class-name) stream format) ,(gsl-name "fscanf") ((stream :pointer) ((pointer object) :pointer) (format :string)) :type :method))))) -(defun splice-name (base-name keyword symbol) - "Make a new C name for a data function from a base name." - (let* ((insert (+ (search keyword base-name) (length keyword)))) - (concatenate 'string - (subseq base-name 0 insert) - (rest (assoc symbol *data-name-alist*)) - (subseq base-name insert)))) - -;;; (splice-name "gsl_vector_get" "vector" 'vector-fixnum) -;;; "gsl_vector_int_get" -;;; (make-symbol-from-strings *gsl-prefix* 'vector-fixnum) -;;; GSL-VECTOR-FIXNUM - -(defun defmfun-all (types ctypes string general-class args) +(defun defmfun-all (category cl-types args &optional key-string) "A defmfun for each of the declared data types." - `(progn - ,@(loop for type in types - for ctype in ctypes - collect - `(defmfun ,(first args) - ;; Set the class name for the arglist - ,(mapcar - (lambda (x) - (if (and (listp x) (eq (second x) general-class)) - (list (first x) - (make-symbol-from-strings general-class type)) - x)) - (second args)) - ;; Create the correct GSL C library function name - ,(splice-name (third args) string type) - ,(mapcar - (lambda (x) - (if (eq (st-type x) :c-base-type) - (list (st-symbol x) ctype) - x)) - (fourth args)) - ,@(let ((restargs (copy-list (nthcdr 4 args)))) - (when (eq (getf restargs :c-return) :c-base-type) - (setf (getf restargs :c-return) ctype)) - (setf (getf restargs :type) :method) - restargs))))) + (let ((categories (if (listp category) category (list category)))) + `(progn + ,@(loop for type in cl-types + for ctype = (lookup-C-type type) + collect + `(defmfun ,(first args) + ;; Set the class name for the arglist + ,(mapcar + (lambda (x) + (if (and (listp x) (member (second x) categories)) + (list (first x) + (data-class-name (second x) type)) + x)) + (second args)) + ;; Create the correct GSL C library function name + ,(splice-name + (third args) + ;; Use key-string to override the lookup of the category. + (or key-string (data-gsl-string (first categories) type)) + type) + ,(mapcar + (lambda (x) + (if (eq (st-type x) :c-base-type) + (list (st-symbol x) ctype) + x)) + (fourth args)) + ,@(let ((restargs (copy-list (nthcdr 4 args)))) + (when (eq (getf restargs :c-return) :c-base-type) + (setf (getf restargs :c-return) ctype)) + (setf (getf restargs :type) :method) + restargs)))))) ;;;;**************************************************************************** ;;;; Making data objects and initializing storage @@ -263,10 +270,7 @@ "Make the GSL data object, including the allocation of space. The user is responsible for calling #'free to free the foreign memory when done." - (let ((obj - (make-instance - (make-symbol-from-strings *gsl-prefix* type) - :storage-size size))) + (let ((obj (make-instance type :storage-size size))) (if zero (calloc obj) (alloc obj)) obj)) @@ -296,7 +300,7 @@ (list (make-list total-size)) ((nil vector) (make-array (list total-size) - :element-type (cl-base-type object))) + :element-type (cl-elt-type object))) (t sequence)))) (loop for i from 0 below (min (length seq) total-size) diff --git a/data/matrix.lisp b/data/matrix.lisp index 23a21e4b6a82bc7982cbfda0db8f82c30c6df1bb..ce2bbf1b0e77f2d9c2f099e4b3f6b0eafc6e8079 100644 --- a/data/matrix.lisp +++ b/data/matrix.lisp @@ -1,13 +1,13 @@ ;; Matrices ;; Liam Healy, Sun Mar 26 2006 - 11:51 -;; Time-stamp: <2008-02-23 18:57:17EST matrix.lisp> +;; Time-stamp: <2008-03-10 21:15:53EDT matrix.lisp> ;; $Id$ (in-package :gsl) ;;; Matrices are specified in a letm binding with -;;; (matrix-double size-or-initial &optional zero) -;;; (matrix-single size-or-initial &optional zero) +;;; (matrix-double-float size-or-initial &optional zero) +;;; (matrix-single-float size-or-initial &optional zero) ;;; (matrix-fixnum size-or-initial &optional zero) ;;; (matrix-complex size-or-initial &optional zero) ;;; where size-or-initial is a length-2 list of positive integers @@ -28,33 +28,26 @@ (block :pointer) (owner :int)) -(defclass gsl-matrix (gsl-data) ()) +(defclass matrix (gsl-data) ()) +(add-data-class matrix double-float matrix-double-float matrix "matrix") +(add-data-class matrix single-float matrix-single-float matrix "matrix") +(add-data-class matrix fixnum matrix-fixnum matrix "matrix") +(add-data-class matrix complex matrix-complex matrix "matrix") -;;; Allocation, freeing, reading and writing -(defdata "matrix" matrix-double double-float gsl-matrix 2) -(defdata "matrix_float" matrix-single single-float gsl-matrix 2) -(defdata "matrix_int" matrix-fixnum fixnum gsl-matrix 2) -(defdata "matrix_complex" matrix-complex complex gsl-matrix 2) +(defdata matrix double-float 2) +(defdata matrix single-float 2) +(defdata matrix fixnum 2) +(defdata matrix complex 2) (defmacro defmfun-mdsfc (&rest args) "A defmfun for matrices of double, single, fixnum, and complex." - (defmfun-all - '(double single fixnum complex) - '(:double :float :int gsl-complex) - "matrix" - 'gsl-matrix - args)) + (defmfun-all '(matrix vector) '(double-float single-float fixnum complex) args)) (defmacro defmfun-mdsf (&rest args) "A defmfun for matrices of double, single, and fixnum." - (defmfun-all - '(double single fixnum) - '(:double :float :int) - "matrix" - 'gsl-matrix - args)) + (defmfun-all '(matrix vector) '(double-float single-float fixnum) args)) -(defmethod gsl-array ((object gsl-matrix)) +(defmethod gsl-array ((object matrix)) (foreign-slot-value (pointer object) 'gsl-matrix-c 'data)) (export 'matrix-data) @@ -67,7 +60,7 @@ ;;;; Getting values ;;;;**************************************************************************** -(defmfun-mdsfc maref ((matrix gsl-matrix) &rest indices) +(defmfun-mdsfc maref ((matrix matrix) &rest indices) "gsl_matrix_get" (((pointer matrix) :pointer) ((first indices) size) @@ -89,14 +82,14 @@ (:documentation "A pointer to the i,j-th element of a matrix.")) -(defmfun-mdsfc gsl-matrix-ptr ((matrix gsl-matrix) i j) +(defmfun-mdsfc gsl-matrix-ptr ((matrix matrix) i j) "gsl_matrix_ptr" (((pointer matrix) :pointer) (i size) (j size)) :c-return :pointer) -(defmethod data ((object gsl-matrix) &optional array) +(defmethod data ((object matrix) &optional array) (let ((arr (or array (make-array (storage-size object) - :element-type (cl-base-type object))))) + :element-type (cl-elt-type object))))) (loop for i from 0 below (min (array-dimension arr 0) (first (storage-size object))) do @@ -111,7 +104,7 @@ ;;;; Setting values ;;;;**************************************************************************** -(defmfun-mdsfc (setf maref) (value (matrix gsl-matrix) &rest indices) +(defmfun-mdsfc (setf maref) (value (matrix matrix) &rest indices) "gsl_matrix_set" (((pointer matrix) :pointer) ((first indices) size) @@ -129,7 +122,7 @@ :documentation ; FDL "Set an element of the matrix of doubles, using its pointer.") -(defmethod (setf data) (array (object gsl-matrix)) +(defmethod (setf data) (array (object matrix)) (loop for i from 0 below (min (array-dimension array 0) (first (storage-size object))) @@ -140,17 +133,17 @@ do (setf (maref object i j) (aref array i j))))) -(defmfun-mdsfc set-all ((object gsl-matrix) value) +(defmfun-mdsfc set-all ((object matrix) value) "gsl_matrix_set_all" (((pointer object) :pointer) (value :c-base-type)) :c-return :void) -(defmfun-mdsfc set-zero ((object gsl-matrix)) +(defmfun-mdsfc set-zero ((object matrix)) "gsl_matrix_set_zero" (((pointer object) :pointer)) :c-return :void) -(defmfun-mdsfc set-identity ((matrix gsl-matrix)) +(defmfun-mdsfc set-identity ((matrix matrix)) "gsl_matrix_set_identity" (((pointer matrix) gsl-matrix-c)) :c-return :void :documentation ; FDL @@ -175,7 +168,7 @@ rows and n2 columns. The physical number of columns in memory is unchanged.")) -(defmfun-mdsfc submatrix ((matrix gsl-matrix) k1 k2 n1 n2) +(defmfun-mdsfc submatrix ((matrix matrix) k1 k2 n1 n2) "gsl_matrix_submatrix" (((pointer matrix) gsl-matrix-c) (k1 size) (k2 size) (n1 size) (n2 size)) :c-return gsl-matrix-view) @@ -187,7 +180,7 @@ matrix has n1 rows and n2 columns. The physical number of columns in memory is also given by n2.")) -(defmfun-mdsfc matrix-array ((matrix gsl-matrix) n1 n2) +(defmfun-mdsfc matrix-array ((matrix matrix) n1 n2) "gsl_matrix_view_array" (((pointer matrix) gsl-matrix-c) (n1 size) (n2 size)) :c-return gsl-matrix-view) @@ -201,7 +194,7 @@ columns, and the physical number of columns in memory is given by tda.")) -(defmfun-mdsfc matrix-array-tda ((matrix gsl-matrix) n1 n2 tda) +(defmfun-mdsfc matrix-array-tda ((matrix matrix) n1 n2 tda) "gsl_matrix_view_array_with_tda" (((pointer matrix) gsl-matrix-c) (n1 size) (n2 size) (tda size)) :c-return gsl-matrix-view) @@ -210,11 +203,8 @@ "A defmfun for vectors of double, single, fixnum, and complex, translating to a GSL function named matrix_*." (defmfun-all - '(double single fixnum complex) - '(:double :float :int gsl-complex) - "matrix" - 'gsl-vector - args)) + 'vector '(double-float single-float fixnum complex) args + "matrix")) (export 'matrix-vector) (defgeneric matrix-vector (vector n1 n2) @@ -232,7 +222,7 @@ vector. Of course, the original vector should not be deallocated while the view is still in use.")) -(defmfun-mvdsfc matrix-vector ((v gsl-vector) n1 n2) +(defmfun-mvdsfc matrix-vector ((v vector) n1 n2) "gsl_matrix_view_vector" (((pointer v) gsl-vector-c) (n1 size) (n2 size)) :c-return gsl-matrix-view) @@ -255,7 +245,7 @@ vector. Of course, the original vector should not be deallocated while the view is still in use.")) -(defmfun-mvdsfc matrix-vector-tda ((v gsl-vector) n1 n2 tda) +(defmfun-mvdsfc matrix-vector-tda ((v vector) n1 n2 tda) "gsl_matrix_view_vector_with_tda" (((pointer v) gsl-vector-c) (n1 size) (n2 size) (tda size)) :c-return gsl-matrix-view) @@ -269,7 +259,7 @@ (:documentation ; FDL "A vector view of the ith row of the matrix.")) -(defmfun-mdsfc row-view ((matrix gsl-matrix) i) +(defmfun-mdsfc row-view ((matrix matrix) i) "gsl_matrix_row" (((pointer matrix) gsl-matrix-c) (i size)) :c-return gsl-vector-view :null-pointer-info (:EFAULT (format nil "index ~d out of range" i))) @@ -279,7 +269,7 @@ (:documentation ; FDL "A vector view of the jth column of the matrix.")) -(defmfun-mdsfc column-view ((matrix gsl-matrix) j) +(defmfun-mdsfc column-view ((matrix matrix) j) "gsl_matrix_column" ((matrix gsl-matrix-c) (j size)) :c-return gsl-matrix-view :null-pointer-info (:EFAULT (format nil "index ~d out of range" j))) @@ -292,7 +282,7 @@ For a rectangular matrix the length of the diagonal is the same as the smaller dimension of the matrix.")) -(defmfun-mdsfc diagonal-view ((matrix gsl-matrix)) +(defmfun-mdsfc diagonal-view ((matrix matrix)) "gsl_matrix_diagonal" ((matrix gsl-matrix-c)) :c-return gsl-matrix-view) @@ -303,7 +293,7 @@ required to be square. The diagonal of the matrix corresponds to k = 0.")) -(defmfun-mdsfc subdiagonal-view ((matrix gsl-matrix) k) +(defmfun-mdsfc subdiagonal-view ((matrix matrix) k) "gsl_matrix_subdiagonal" ((matrix gsl-matrix-c) (k size)) :c-return gsl-matrix-view) @@ -313,7 +303,7 @@ "A vector view of the kth superdiagonal of the matrix; it is not required to be square. The diagonal of the matrix corresponds to k = 0.")) -(defmfun-mdsfc superdiagonal-view ((matrix gsl-matrix) k) +(defmfun-mdsfc superdiagonal-view ((matrix matrix) k) "gsl_matrix_superdiagonal" ((matrix gsl-matrix-c) (k size)) :c-return gsl-matrix-view) @@ -322,7 +312,7 @@ ;;;; Copying ;;;;**************************************************************************** -(defmfun-mdsfc copy ((destination gsl-matrix) (source gsl-matrix)) +(defmfun-mdsfc copy ((destination matrix) (source matrix)) "gsl_matrix_memcpy" (((pointer destination) gsl-matrix-c) ((pointer source) gsl-matrix-c)) :invalidate (destination) @@ -330,7 +320,7 @@ "Copy the elements of the matrix source into the matrix destination. The two matrices must have the same size.") -(defmfun-mdsfc swap ((m1 gsl-matrix) (m2 gsl-matrix)) +(defmfun-mdsfc swap ((m1 matrix) (m2 matrix)) "gsl_matrix_swap" (((pointer m1) gsl-matrix-c) ((pointer m2) gsl-matrix-c)) :invalidate (m1 m2) @@ -349,7 +339,7 @@ into the vector. The length of the vector must be the same as the length of the row.")) -(defmfun-mdsfc row ((vector gsl-vector) (matrix gsl-matrix) i) +(defmfun-mdsfc row ((vector vector) (matrix matrix) i) "gsl_matrix_get_row" (((pointer vector) gsl-vector-c) ((pointer matrix) gsl-matrix-c) (i size)) :invalidate (vector)) @@ -361,7 +351,7 @@ into the vector. The length of the vector must be the same as the length of the column.")) -(defmfun-mdsfc column ((vector gsl-vector) (matrix gsl-matrix) j) +(defmfun-mdsfc column ((vector vector) (matrix matrix) j) "gsl_matrix_get_col" (((pointer vector) gsl-vector-c) ((pointer matrix) gsl-matrix-c) (j size)) :invalidate (vector)) @@ -373,7 +363,7 @@ ith row of the matrix. The length of the vector must be the same as the length of the row.")) -(defmfun-mdsfc set-row ((matrix gsl-matrix) i (vector gsl-vector)) +(defmfun-mdsfc set-row ((matrix matrix) i (vector vector)) "gsl_matrix_set_row" (((pointer matrix) gsl-matrix-c) (i size) ((pointer vector) gsl-vector-c)) :invalidate (matrix)) @@ -384,7 +374,7 @@ "Copy the elements of the vector into the jth column of the matrix. The length of the vector must be the same as the length of the column.")) -(defmfun-mdsfc set-column ((matrix gsl-matrix) j (vector gsl-vector)) +(defmfun-mdsfc set-column ((matrix matrix) j (vector vector)) "gsl_matrix_set_col" (((pointer matrix) gsl-matrix-c) (j size) ((pointer vector) gsl-vector-c)) :invalidate (matrix)) @@ -401,7 +391,7 @@ (:documentation ; FDL "Exchange the ith and jth rows of the matrix in-place.")) -(defmfun-mdsfc swap-rows ((matrix gsl-matrix) i j) +(defmfun-mdsfc swap-rows ((matrix matrix) i j) "gsl_matrix_swap_rows" (((pointer matrix) gsl-matrix-c) (i size) (j size)) :invalidate (matrix)) @@ -411,7 +401,7 @@ (:documentation ; FDL "Exchange the ith and jth columns of the matrix in-place.")) -(defmfun-mdsfc swap-columns ((matrix gsl-matrix) i j) +(defmfun-mdsfc swap-columns ((matrix matrix) i j) "gsl_matrix_swap_columns" (((pointer matrix) gsl-matrix-c) (i size) (j size)) :invalidate (matrix)) @@ -423,7 +413,7 @@ matrix in-place. The matrix must be square for this operation to be possible.")) -(defmfun-mdsfc swap-rowcol ((matrix gsl-matrix) i j) +(defmfun-mdsfc swap-rowcol ((matrix matrix) i j) "gsl_matrix_swap_rowcol" (((pointer matrix) gsl-matrix-c) (i size) (j size)) :invalidate (matrix)) @@ -436,7 +426,7 @@ matrix must match the transposed dimensions of the source.")) (defmfun-mdsfc matrix-transpose-copy - ((destination gsl-matrix) (source gsl-matrix)) + ((destination matrix) (source matrix)) "gsl_matrix_transpose_memcpy" (((pointer destination) gsl-matrix-c) ((pointer source) gsl-matrix-c)) :invalidate (destination)) @@ -448,7 +438,7 @@ of the matrix in-place. The matrix must be square for this operation to be possible.")) -(defmfun-mdsfc matrix-transpose ((matrix gsl-matrix)) +(defmfun-mdsfc matrix-transpose ((matrix matrix)) "gsl_matrix_transpose" (((pointer matrix) gsl-matrix-c)) :invalidate (matrix)) @@ -457,7 +447,7 @@ ;;;; Arithmetic operations ;;;;**************************************************************************** -(defmfun-mdsfc m+ ((a gsl-matrix) (b gsl-matrix)) +(defmfun-mdsfc m+ ((a matrix) (b matrix)) "gsl_matrix_add" (((pointer a) gsl-matrix-c) ((pointer b) gsl-matrix-c)) :invalidate (a) @@ -466,7 +456,7 @@ a'_i = a_i + b_i. The two matrices must have the same dimensions.") -(defmfun-mdsfc m- ((a gsl-matrix) (b gsl-matrix)) +(defmfun-mdsfc m- ((a matrix) (b matrix)) "gsl_matrix_sub" (((pointer a) gsl-matrix-c) ((pointer b) gsl-matrix-c)) :invalidate (a) :documentation ; FDL @@ -474,7 +464,7 @@ a, a'_i = a_i - b_i. The two matrices must have the same dimensions.") -(defmfun-mdsfc m* ((a gsl-matrix) (b gsl-matrix)) +(defmfun-mdsfc m* ((a matrix) (b matrix)) "gsl_matrix_mul_elements" (((pointer a) gsl-matrix-c) ((pointer b) gsl-matrix-c)) :invalidate (a) @@ -483,7 +473,7 @@ matrix b, a'(i,j) = a(i,j) * b(i,j). The two matrices must have the same dimensions.") -(defmfun-mdsfc m/ ((a gsl-matrix) (b gsl-matrix)) +(defmfun-mdsfc m/ ((a matrix) (b matrix)) "gsl_matrix_div_elements" (((pointer a) gsl-matrix-c) ((pointer b) gsl-matrix-c)) :invalidate (a) @@ -492,14 +482,14 @@ matrix b, a'(i,j) = a(i,j) / b(i,j). The two matrices must have the same dimensions.") -(defmfun-mdsfc m*c ((a gsl-matrix) x) +(defmfun-mdsfc m*c ((a matrix) x) "gsl_matrix_scale" (((pointer a) gsl-matrix-c) (x :c-base-type)) :invalidate (a) :documentation ; FDL "Multiply the elements of matrix a by the constant factor x, a'(i,j) = x a(i,j).") -(defmfun-mdsfc m+c ((a gsl-matrix) x) +(defmfun-mdsfc m+c ((a matrix) x) "gsl_matrix_add_constant" (((pointer a) gsl-matrix-c) (x :c-base-type)) :invalidate (a) :documentation ; FDL @@ -510,26 +500,26 @@ ;;;; Maximum and minimum elements ;;;;**************************************************************************** -(defmfun-mdsf gsl-max ((m gsl-matrix)) +(defmfun-mdsf gsl-max ((m matrix)) "gsl_matrix_max" (((pointer m) gsl-matrix-c)) :documentation ; FDL "The maximum value in the matrix m." :c-return :c-base-type) -(defmfun-mdsf gsl-min ((m gsl-matrix)) +(defmfun-mdsf gsl-min ((m matrix)) "gsl_matrix_min" (((pointer m) gsl-matrix-c)) :documentation ; FDL "The minimum value in the matrix m." :c-return :c-base-type) -(defmfun-mdsf gsl-minmax ((m gsl-matrix)) +(defmfun-mdsf gsl-minmax ((m matrix)) "gsl_matrix_minmax" (((pointer m) gsl-matrix-c) (min :c-base-type) (max :c-base-type)) :documentation ; FDL "The minimum and maximum values in the matrix m." :c-return :void) -(defmfun-mdsf gsl-max-index ((m gsl-matrix)) +(defmfun-mdsf gsl-max-index ((m matrix)) "gsl_matrix_max_index" (((pointer m) gsl-matrix-c) (imax size) (jmax size)) :documentation ; FDL @@ -539,7 +529,7 @@ :c-return :void :return ((list (scref imax) (scref jmax)))) -(defmfun-mdsf gsl-min-index ((m gsl-matrix)) +(defmfun-mdsf gsl-min-index ((m matrix)) "gsl_matrix_min_index" (((pointer m) gsl-matrix-c) (imin size) (jmin size)) :documentation ; FDL @@ -549,7 +539,7 @@ :c-return :void :return ((list (scref imin) (scref jmin)))) -(defmfun-mdsf gsl-minmax-index ((m gsl-matrix)) +(defmfun-mdsf gsl-minmax-index ((m matrix)) "gsl_matrix_minmax_index" (((pointer m) gsl-matrix-c) (imin size) (jmin size) (imax size) (jmax size)) @@ -565,8 +555,8 @@ ;;;; Properties ;;;;**************************************************************************** -(defmfun-mdsfc gsl-zerop ((m gsl-matrix)) - "gsl_matrix_isnull" ((m gsl-matrix-c)) +(defmfun-mdsfc gsl-zerop ((m matrix)) + "gsl_matrix_isnull" (((pointer m) gsl-matrix-c)) :documentation ; FDL "All elements of matrix m are zero." :c-return :boolean) @@ -737,17 +727,17 @@ #| (make-tests matrix-double - (letm ((mat (matrix-double 10 3))) + (letm ((mat (matrix-double-float 10 3))) (loop for i from 0 below 10 do (loop for j from 0 below 3 do (setf (maref mat i j) (+ 0.23d0 j (* 100 i))))) (data mat)) - (letm ((mat (matrix-double #2A((1.0d0 2.0d0) (3.0d0 4.0d0)))) - (ans (matrix-double 2 2))) + (letm ((mat (matrix-double-float #2A((1.0d0 2.0d0) (3.0d0 4.0d0)))) + (ans (matrix-double-float 2 2))) (copy ans mat) (data ans)) - (letm ((mat (matrix-double #2A((1.0d0 2.0d0) (3.0d0 4.0d0))))) + (letm ((mat (matrix-double-float #2A((1.0d0 2.0d0) (3.0d0 4.0d0))))) (m* mat mat) (data mat))) |# @@ -766,7 +756,7 @@ (800.23d0 801.23d0 802.23d0) (900.23d0 901.23d0 902.23d0))) (MULTIPLE-VALUE-LIST - (LETM ((MAT (MATRIX-DOUBLE 10 3))) + (LETM ((MAT (MATRIX-DOUBLE-FLOAT 10 3))) (LOOP FOR I FROM 0 BELOW 10 DO (LOOP FOR J FROM 0 BELOW 3 DO (SETF (MAREF MAT I J) @@ -775,12 +765,12 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #2A((1.0d0 2.0d0) (3.0d0 4.0d0))) (MULTIPLE-VALUE-LIST - (LETM ((MAT (MATRIX-DOUBLE #2A((1.0d0 2.0d0) (3.0d0 4.0d0)))) - (ANS (MATRIX-DOUBLE 2 2))) + (LETM ((MAT (MATRIX-DOUBLE-FLOAT #2A((1.0d0 2.0d0) (3.0d0 4.0d0)))) + (ANS (MATRIX-DOUBLE-FLOAT 2 2))) (COPY ANS MAT) (DATA ANS)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #2A((1.0d0 4.0d0) (9.0d0 16.0d0))) (MULTIPLE-VALUE-LIST - (LETM ((MAT (MATRIX-DOUBLE #2A((1.0d0 2.0d0) (3.0d0 4.0d0))))) + (LETM ((MAT (MATRIX-DOUBLE-FLOAT #2A((1.0d0 2.0d0) (3.0d0 4.0d0))))) (M* MAT MAT) (DATA MAT))))) diff --git a/data/permutation.lisp b/data/permutation.lisp index 125ed35e05af135ebfdaf114ef611053275e8689..c82c6277df2f6db18e62b5bb11283bb7212a5ed9 100644 --- a/data/permutation.lisp +++ b/data/permutation.lisp @@ -1,6 +1,6 @@ ;; Permutations ;; Liam Healy, Sun Mar 26 2006 - 11:51 -;; Time-stamp: <2008-02-23 18:49:22EST permutation.lisp> +;; Time-stamp: <2008-03-09 21:52:16EDT permutation.lisp> ;; $Id$ (in-package :gsl) @@ -14,17 +14,17 @@ (size size) (data :pointer)) -;;; Allocation, freeing, reading and writing -(defdata "permutation" permutation unsigned-byte) +(add-data-class permutation fixnum permutation gsl-data "permutation") +(defdata permutation fixnum 1 "") -(defmethod gsl-array ((object gsl-permutation)) +(defmethod gsl-array ((object permutation)) (foreign-slot-value (pointer object) 'gsl-permutation-c 'data)) ;;;;**************************************************************************** ;;;; Getting values ;;;;**************************************************************************** -(defmfun maref ((permutation gsl-permutation) &rest indices) +(defmfun maref ((permutation permutation) &rest indices) "gsl_permutation_get" (((pointer permutation) :pointer) ((first indices) size)) :type :method @@ -35,7 +35,7 @@ ;;;; Setting values ;;;;**************************************************************************** -(defmfun set-identity ((permutation gsl-permutation)) +(defmfun set-identity ((permutation permutation)) "gsl_permutation_init" (((pointer permutation) :pointer)) :type :method @@ -44,7 +44,7 @@ "Initialize the permutation p to the identity, i.e. (0,1,2,...,n-1).") -(defmfun copy ((destination gsl-permutation) (source gsl-permutation)) +(defmfun copy ((destination permutation) (source permutation)) "gsl_permutation_memcpy" (((pointer destination) gsl-permutation-c) ((pointer source) gsl-permutation-c)) @@ -54,7 +54,7 @@ "Copy the elements of the permutation source into the permutation destination. The two permutations must have the same size.") -(defmfun swap-elements ((p gsl-permutation) i j) +(defmfun swap-elements ((p permutation) i j) "gsl_permutation_swap" (((pointer p) gsl-permutation-c) (i size) (j size)) :type :method @@ -81,7 +81,7 @@ "A pointer to the array of elements in the permutation p.") -(defmfun data-valid ((permutation gsl-permutation)) +(defmfun data-valid ((permutation permutation)) "gsl_permutation_valid" (((pointer permutation) :pointer)) :type :method @@ -162,7 +162,7 @@ identity matrix. The permutation p and the vector v must have the same length.")) -(defmfun-vdsfc permute-vector (p (v gsl-vector)) +(defmfun-vdsfc permute-vector (p (v vector)) "gsl_permute_vector" (((pointer p) gsl-permutation-c) ((pointer v) gsl-vector-c)) :invalidate (v)) @@ -178,7 +178,7 @@ the p_j-th column of the identity matrix. The permutation p and the vector v must have the same length.")) -(defmfun-vdsfc permute-vector-inverse (p (v gsl-vector)) +(defmfun-vdsfc permute-vector-inverse (p (v vector)) "gsl_permute_vector_inverse" (((pointer p) gsl-permutation-c) ((pointer v) gsl-vector-c)) :invalidate (v)) diff --git a/data/vector.lisp b/data/vector.lisp index 6853cef70ca105d412f312d1cec3c2078fe27025..1f334b2b5c3ba3be4f07a630d29cc82ebcd2deda 100644 --- a/data/vector.lisp +++ b/data/vector.lisp @@ -1,13 +1,13 @@ ;; Vectors ;; Liam Healy, Sun Mar 26 2006 - 11:51 -;; Time-stamp: <2008-02-23 18:57:18EST vector.lisp> +;; Time-stamp: <2008-03-09 21:45:37EDT vector.lisp> ;; $Id$ (in-package :gsl) ;;; Vectors are specified in a letm binding with -;;; (vector-double size-or-initial &optional zero) -;;; (vector-single size-or-initial &optional zero) +;;; (vector-double-float size-or-initial &optional zero) +;;; (vector-single-float size-or-initial &optional zero) ;;; (vector-fixnum size-or-initial &optional zero) ;;; (vector-complex size-or-initial &optional zero) ;;; where size-or-initial is a positive integer indicating the @@ -55,43 +55,30 @@ deallocated with the vector. (block :pointer) (owner :int)) -(defclass gsl-vector (gsl-data) ()) +(defclass mvector (gsl-data) ()) +(add-data-class vector double-float vector-double-float mvector "vector") +(add-data-class vector single-float vector-single-float mvector "vector") +(add-data-class vector fixnum vector-fixnum mvector "vector") +(add-data-class vector complex vector-complex mvector "vector") ;;; Allocation, freeing, reading and writing -(defdata "vector" vector-double double-float gsl-vector) -(defdata "vector_float" vector-single single-float gsl-vector) -(defdata "vector_int" vector-fixnum fixnum gsl-vector) -(defdata "vector_complex" vector-complex complex gsl-vector) - -;;; (defdata "vector_uint" vector-unsigned-fixnum (unsigned-byte 64) gsl-vector) -;;; doesn't work 2007-03-04. -;;; (deftype unsigned-fixnum () `(integer 0 ,most-positive-fixnum)) -;;; (defdata "vector_uint" vector-unsigned-fixnum unsigned-fixnum gsl-vector) -;;; doesn't work either 2008-02-10. - +(defdata vector double-float) +(defdata vector single-float) +(defdata vector fixnum) +(defdata vector complex) (defmacro defmfun-vdsfc (&rest args) - "A defmfun for vectors of double, single, fixnum, and complex." - (defmfun-all - '(double single fixnum complex) - '(:double :float :int gsl-complex) - "vector" - 'gsl-vector - args)) + "A defmfun for vectors of double, single, fixnum, complex, unsigned-fixnum." + (defmfun-all 'vector '(double-float single-float fixnum complex) args)) (defmacro defmfun-vdsf (&rest args) "A defmfun for vectors of double, single, and fixnum." - (defmfun-all - '(double single fixnum) - '(:double :float :int) - "vector" - 'gsl-vector - args)) - -(defmethod gsl-array ((object gsl-vector)) + (defmfun-all 'vector '(double-float single-float fixnum) args)) + +(defmethod gsl-array ((object mvector)) (cffi:foreign-slot-value (pointer object) 'gsl-vector-c 'data)) -(defun make-data-from-pointer (pointer &optional (class 'gsl-vector-double) size) +(defun make-data-from-pointer (pointer &optional (class 'vector-double-float) size) "Given a C pointer to a GSL data type, make the CL object." (make-instance class @@ -108,7 +95,7 @@ deallocated with the vector. (defun element-size (object) "The size of each element as stored in C." (cffi:foreign-type-size - (rest (assoc (cl-base-type object) + (rest (assoc (cl-elt-type object) '((double . :double) (single . :float) (fixnum . :int) (complex . gsl-complex)))))) @@ -116,7 +103,7 @@ deallocated with the vector. ;;;; Getting values ;;;;**************************************************************************** -(defmfun-vdsfc maref ((vector gsl-vector) &rest indices) +(defmfun-vdsfc maref ((vector vector) &rest indices) "gsl_vector_get" (((pointer vector) :pointer) ((first indices) size)) :c-return :c-base-type @@ -140,7 +127,7 @@ deallocated with the vector. ;;;; Setting values ;;;;**************************************************************************** -(defmfun-vdsfc (setf maref) (value (vector gsl-vector) &rest indices) +(defmfun-vdsfc (setf maref) (value (vector vector) &rest indices) "gsl_vector_set" (((pointer vector) :pointer) ((first indices) size) (value :c-base-type)) :c-return :void @@ -155,16 +142,16 @@ deallocated with the vector. :documentation ; FDL "Set an element of the vector of doubles, using its pointer.") -(defmfun-vdsfc set-all ((object gsl-vector) value) +(defmfun-vdsfc set-all ((object vector) value) "gsl_vector_set_all" (((pointer object) :pointer) (value :c-base-type)) :c-return :void) -(defmfun-vdsfc set-zero ((object gsl-vector)) +(defmfun-vdsfc set-zero ((object vector)) "gsl_vector_set_zero" (((pointer object) :pointer)) :c-return :void) -(defmfun-vdsfc set-basis ((vector gsl-vector) index) +(defmfun-vdsfc set-basis ((vector vector) index) "gsl_vector_set_basis" (((pointer vector) gsl-vector-c) (index size)) :invalidate (vector) :documentation ; FDL @@ -178,7 +165,7 @@ deallocated with the vector. (vector gsl-vector-c)) ;;; broken -;;; (letm ((vec (vector-double #(-3.21d0 1.0d0 12.8d0)))) (subvector vec 1 2)) +;;; (letm ((vec (vector-double-float #(-3.21d0 1.0d0 12.8d0)))) (subvector vec 1 2)) (export '(subvector subvector-stride)) @@ -202,12 +189,12 @@ deallocated with the vector. Note that subvector views give direct access to the underlying elements of the original vector.")) -(defmfun-vdsfc subvector ((vector gsl-vector) offset size) +(defmfun-vdsfc subvector ((vector vector) offset size) "gsl_vector_subvector" (((pointer vector) gsl-vector-c) (offset size) (size size)) :c-return :pointer) -(defmfun-vdsfc subvector-stride ((vector gsl-vector) offset stride size) +(defmfun-vdsfc subvector-stride ((vector vector) offset stride size) "gsl_vector_subvector_with_stride" (((pointer vector) gsl-vector-c) (offset size) (stride size) (size size)) @@ -247,7 +234,7 @@ deallocated with the vector. ;;;; Copying ;;;;**************************************************************************** -(defmfun-vdsfc copy ((destination gsl-vector) (source gsl-vector)) +(defmfun-vdsfc copy ((destination vector) (source vector)) "gsl_vector_memcpy" (((pointer destination) gsl-vector-c) ((pointer source) gsl-vector-c)) :invalidate (destination) @@ -255,7 +242,7 @@ deallocated with the vector. "Copy the elements of the vector source into the vector destination. The two vectors must have the same length.") -(defmfun-vdsfc swap ((v gsl-vector) (w gsl-vector)) +(defmfun-vdsfc swap ((v vector) (w vector)) "gsl_vector_swap" (((pointer v) gsl-vector-c) ((pointer w) gsl-vector-c)) :invalidate (v w) :documentation ; FDL @@ -276,14 +263,14 @@ deallocated with the vector. (:documentation "Exchange the i-th and j-th elements of the vector vec in-place.")) -(defmfun-vdsfc swap-elements ((vec gsl-vector) i j) +(defmfun-vdsfc swap-elements ((vec vector) i j) "gsl_vector_swap_elements" (((pointer vec) gsl-vector-c) (i size) (j size)) :after ((when (listp (cl-invalid vec)) (push (list i) (cl-invalid vec)) (push (list j) (cl-invalid vec)))) :return (vec)) -(defmfun-vdsfc vector-reverse ((vec gsl-vector)) +(defmfun-vdsfc vector-reverse ((vec vector)) "gsl_vector_reverse" (((pointer vec) gsl-vector-c)) :invalidate (vec) :documentation ; FDL @@ -293,7 +280,7 @@ deallocated with the vector. ;;;; Arithmetic operations ;;;;**************************************************************************** -(defmfun-vdsf m+ ((a gsl-vector) (b gsl-vector)) +(defmfun-vdsf m+ ((a vector) (b vector)) "gsl_vector_add" (((pointer a) gsl-vector-c) ((pointer b) gsl-vector-c)) :invalidate (a) :documentation ; FDL @@ -301,34 +288,34 @@ deallocated with the vector. vector a, a'_i = a_i + b_i. The two vectors must have the same length.") -(defmfun-vdsf m- ((a gsl-vector) (b gsl-vector)) +(defmfun-vdsf m- ((a vector) (b vector)) "gsl_vector_sub" (((pointer a) gsl-vector-c) ((pointer b) gsl-vector-c)) :invalidate (a) :documentation ; FDL "Subtract the elements of vector b from the elements of vector a, a'_i = a_i - b_i. The two vectors must have the same length.") -(defmfun-vdsf m* ((a gsl-vector) (b gsl-vector)) +(defmfun-vdsf m* ((a vector) (b vector)) "gsl_vector_mul" (((pointer a) gsl-vector-c) ((pointer b) gsl-vector-c)) :invalidate (a) :documentation ; FDL "Multiply the elements of vector a by the elements of vector b, a'_i = a_i * b_i. The two vectors must have the same length.") -(defmfun-vdsf m/ ((a gsl-vector) (b gsl-vector)) +(defmfun-vdsf m/ ((a vector) (b vector)) "gsl_vector_div" (((pointer a) gsl-vector-c) ((pointer b) gsl-vector-c)) :invalidate (a) :documentation ; FDL "Divide the elements of vector a by the elements of vector b, a'_i = a_i / b_i. The two vectors must have the same length.") -(defmfun-vdsf m*c ((a gsl-vector) x) +(defmfun-vdsf m*c ((a vector) x) "gsl_vector_scale" (((pointer a) gsl-vector-c) (x :double)) :invalidate (a) :documentation ; FDL "Multiply the elements of vector a by the constant factor x, a'_i = x a_i.") -(defmfun-vdsf m+c ((a gsl-vector) x) +(defmfun-vdsf m+c ((a vector) x) "gsl_vector_add_constant" (((pointer a) gsl-vector-c) (x :double)) :invalidate (a) :documentation ; FDL @@ -338,26 +325,26 @@ deallocated with the vector. ;;;; Maximum and minimum elements ;;;;**************************************************************************** -(defmfun-vdsf gsl-max ((v gsl-vector)) +(defmfun-vdsf gsl-max ((v vector)) "gsl_vector_max" (((pointer v) gsl-vector-c)) :c-return :c-base-type :documentation ; FDL "The maximum value in the vector v.") -(defmfun-vdsf gsl-min ((v gsl-vector)) +(defmfun-vdsf gsl-min ((v vector)) "gsl_vector_min" (((pointer v) gsl-vector-c)) :c-return :c-base-type :documentation ; FDL "The minimum value in the vector v.") -(defmfun-vdsf gsl-minmax ((v gsl-vector)) +(defmfun-vdsf gsl-minmax ((v vector)) "gsl_vector_minmax" (((pointer v) gsl-vector-c) (min :c-base-type) (max :c-base-type)) :c-return :void :documentation ; FDL "The minimum and maximum values in the vector v.") -(defmfun-vdsf gsl-max-index ((v gsl-vector)) +(defmfun-vdsf gsl-max-index ((v vector)) "gsl_vector_max_index" (((pointer v) gsl-vector-c)) :c-return size :documentation ; FDL @@ -365,14 +352,14 @@ deallocated with the vector. When there are several equal minimum elements then the lowest index is returned.") -(defmfun-vdsf gsl-min-index ((v gsl-vector)) +(defmfun-vdsf gsl-min-index ((v vector)) "gsl_vector_min_index" (((pointer v) gsl-vector-c)) :c-return size :documentation ; FDL "The index of the minimum value in the vector v. When there are several equal minimum elements then the lowest index is returned.") -(defmfun-vdsf gsl-minmax-index ((v gsl-vector)) +(defmfun-vdsf gsl-minmax-index ((v vector)) "gsl_vector_minmax_index" (((pointer v) gsl-vector-c) (imin size) (imax size)) :c-return :void @@ -385,7 +372,7 @@ deallocated with the vector. ;;;; Properties ;;;;**************************************************************************** -(defmfun-vdsfc gsl-zerop ((v gsl-vector)) +(defmfun-vdsfc gsl-zerop ((v vector)) "gsl_vector_isnull" (((pointer v) gsl-vector-c)) :c-return :boolean :documentation ; FDL @@ -535,31 +522,31 @@ deallocated with the vector. #| (make-tests vector-double - (letm ((vec (vector-double 3))) + (letm ((vec (vector-double-float 3))) (setf (maref vec 0) -3.21d0 (maref vec 1) 1.0d0 (maref vec 2) 12.8d0 (cl-invalid vec) t) (data vec)) - (letm ((vec (vector-double 3))) + (letm ((vec (vector-double-float 3))) (setf (data vec) #(-3.21d0 1.0d0 12.8d0)) (data vec)) - (letm ((vec (vector-double #(-3.21d0 1.0d0 12.8d0)))) + (letm ((vec (vector-double-float #(-3.21d0 1.0d0 12.8d0)))) (data vec)) - (letm ((base (vector-double 5))) + (letm ((base (vector-double-float 5))) (set-basis base 1) (data base)) - (letm ((vec1 (vector-double #(-3.21d0 1.0d0 12.8d0))) - (vec2 (vector-double 3))) + (letm ((vec1 (vector-double-float #(-3.21d0 1.0d0 12.8d0))) + (vec2 (vector-double-float 3))) (copy vec2 vec1) (data vec2))) |# -(LISP-UNIT:DEFINE-TEST VECTOR-DOUBLE +(LISP-UNIT:DEFINE-TEST VECTOR-DOUBLE-FLOAT (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(-3.21d0 1.0d0 12.8d0)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE 3))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT 3))) (SETF (MAREF VEC 0) -3.21d0 (MAREF VEC 1) 1.0d0 (MAREF VEC 2) 12.8d0 @@ -568,23 +555,23 @@ deallocated with the vector. (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(-3.21d0 1.0d0 12.8d0)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE 3))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT 3))) (SETF (DATA VEC) #(-3.21d0 1.0d0 12.8d0)) (DATA VEC)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(-3.21d0 1.0d0 12.8d0)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(-3.21d0 1.0d0 12.8d0)))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(-3.21d0 1.0d0 12.8d0)))) (DATA VEC)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(0.0d0 1.0d0 0.0d0 0.0d0 0.0d0)) (MULTIPLE-VALUE-LIST - (LETM ((BASE (VECTOR-DOUBLE 5))) (SET-BASIS BASE 1) + (LETM ((BASE (VECTOR-DOUBLE-FLOAT 5))) (SET-BASIS BASE 1) (DATA BASE)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(-3.21d0 1.0d0 12.8d0)) (MULTIPLE-VALUE-LIST (LETM - ((VEC1 (VECTOR-DOUBLE #(-3.21d0 1.0d0 12.8d0))) - (VEC2 (VECTOR-DOUBLE 3))) + ((VEC1 (VECTOR-DOUBLE-FLOAT #(-3.21d0 1.0d0 12.8d0))) + (VEC2 (VECTOR-DOUBLE-FLOAT 3))) (COPY VEC2 VEC1) (DATA VEC2))))) diff --git a/documentation/documentation.html b/documentation/documentation.html index 1567a920a2dcdc50e0e00c1ea84848269a6cbcaf..97efae3d72e14147dc834d68f71839e49474b716 100644 --- a/documentation/documentation.html +++ b/documentation/documentation.html @@ -62,17 +62,18 @@ href="http://www.lispworks.com/documentation/HyperSpec/Body/s_let_l.htm#letST">l with the additional feature that if the init-form is one of GSL objects <pre> -acceleration basis-spline block-complex block-double block-fixnum -block-single chebyshev combination complex-workspace discrete-random -eigen-herm eigen-hermv eigen-symm eigen-symmv fdfsolver fit-workspace -fminimizer fsolver hankel histogram integration-workspace -interpolation levin levin-truncated matrix-complex matrix-double -matrix-fixnum matrix-single mfdfminimizer mfdfsolver mfminimizer -mfsolver monte-carlo-miser monte-carlo-plain monte-carlo-vegas +acceleration basis-spline block-complex block-double-float block-fixnum +block-single-float chebyshev combination complex-workspace +discrete-random eigen-herm eigen-hermv eigen-symm eigen-symmv +fdfsolver fit-workspace fminimizer fsolver hankel histogram +integration-workspace interpolation levin levin-truncated +matrix-complex matrix-double-float matrix-fixnum +matrix-single-float mfdfminimizer mfdfsolver mfminimizer mfsolver +monte-carlo-miser monte-carlo-plain monte-carlo-vegas nonlinear-fdffit nonlinear-ffit permutation quasi-random-number-generator random-number-generator spline -vector-complex vector-double vector-fixnum vector-single wavelet -wavelet-workspace +vector-complex vector-double-float vector-fixnum +vector-single-float wavelet wavelet-workspace </pre> the appropriate object will be allocated and bound to the variable, optionally set, and then freed when the body of the let is exited. @@ -95,7 +96,7 @@ let binding. can be done within the <code>letm</code> by giving the Lisp value as the first argument after the type, for example <pre> -(letm ((vec (vector-double #(-3.21d0 1.0d0 12.8d0)))) +(letm ((vec (vector-double-float #(-3.21d0 1.0d0 12.8d0)))) (data vec)) </pre> Individual elements of data may be accessed with <code>maref</code>, @@ -154,7 +155,7 @@ gamma-randist, negative-binomial. <address><a href="mailto:gsll-devel@common-lisp.net">Liam Healy</a></address> <!-- hhmts start --> <small> - Time-stamp: <2008-03-08 11:07:51EST documentation.html> + Time-stamp: <2008-03-09 22:21:24EDT documentation.html> </small> <!-- hhmts end --> </div> diff --git a/eigensystems.lisp b/eigensystems.lisp index 7616dc2cb63f2eb8abd8adfee9fe553deb77b574..8c1665dc70e8f470bee2810b32d7171d5bdcce3b 100644 --- a/eigensystems.lisp +++ b/eigensystems.lisp @@ -1,6 +1,6 @@ ;; Eigenvectors and eigenvalues ;; Liam Healy, Sun May 21 2006 - 19:52 -;; Time-stamp: <2008-02-17 11:32:46EST eigensystems.lisp> +;; Time-stamp: <2008-03-10 21:20:59EDT eigensystems.lisp> ;; $Id$ (in-package :gsl) @@ -165,14 +165,13 @@ :value-descending, :absolute-ascending, :absolute-descending.")) (defmfun sort-eigenvalues-eigenvectors - ((eval gsl-vector-double) evec sort-type) + ((eval vector-double-float) evec sort-type) "gsl_eigen_symmv_sort" ((eval gsl-vector-c) (evec gsl-matrix-c) (sort-type eigen-sort-type)) :type :method :invalidate (eval evec)) -(defmfun sort-eigenvalues-eigenvectors - ((eval gsl-vector-complex) evec sort-type) +(defmfun sort-eigenvalues-eigenvectors ((eval vector-complex) evec sort-type) "gsl_eigen_hermv_sort" ((eval gsl-vector-c) (evec gsl-matrix-c) (sort-type eigen-sort-type)) :type :method @@ -183,10 +182,10 @@ ;;;;**************************************************************************** (defun eigenvalue-eigenvectors-example () - (letm ((evecs (matrix-double 3 3)) - (evals (vector-double 3)) + (letm ((evecs (matrix-double-float 3 3)) + (evals (vector-double-float 3)) (ws (eigen-symmv 3)) - (mat (matrix-double + (mat (matrix-double-float #2A((20.0d0 -10.0d0 0.0d0) (-10.0d0 30.0d0 0.0d0) (0.0d0 0.0d0 40.0d0))))) diff --git a/gsll.asd b/gsll.asd index c498639c8a51762e789f20f65984cc67c5b3000f..8005809e20e599e414eb0c654982920270d53655 100644 --- a/gsll.asd +++ b/gsll.asd @@ -1,6 +1,6 @@ ;; Definition of GSLL system ;; Liam Healy -;; Time-stamp: <2008-02-18 16:59:30EST gsll.asd> +;; Time-stamp: <2008-03-09 22:13:36EDT gsll.asd> ;; $Id$ (asdf:defsystem "gsll" @@ -15,7 +15,6 @@ :components ((:file "init") (:file "conditions" :depends-on (init)) - (:file "utility" :depends-on (init)) (:file "gsl-objects" :depends-on (init)) (:file "number-conversion" :depends-on (init)) (:file "interface" :depends-on (init conditions number-conversion)) @@ -165,7 +164,7 @@ (:file "types") (:file "lookup") (:file "evaluation") - (:file "spline-example"))) + (:file "spline-example" :depends-on (types)))) (:file "numerical-differentiation" :depends-on (init)) (:file "chebyshev" :depends-on (init)) (:file "series-acceleration" :depends-on (init)) diff --git a/init/init.lisp b/init/init.lisp index f3d59b54cb3d16103f5b745e130c763d9eeadad1..4ae8d8c3a77890b75412503c22983926f70aab49 100644 --- a/init/init.lisp +++ b/init/init.lisp @@ -1,6 +1,6 @@ ;; Load GSL ;; Liam Healy Sat Mar 4 2006 - 18:53 -;; Time-stamp: <2008-02-25 19:31:49EST init.lisp> +;; Time-stamp: <2008-03-09 12:30:38EDT init.lisp> ;; $Id$ (defpackage gsll @@ -20,17 +20,3 @@ (t (:default "libgsl"))) (cffi:use-foreign-library libgsl) - -;;; The following define :size, from cffi-unix which became cffi-net, -;;; which is apparently turning into something even bigger and more -;;; irrelevant. All we need is the definition of :size. This is -;;; not in the keyword package to suppress warnings from CFFI. - -(cffi:defctype uint32 :unsigned-int) -(cffi:defctype uint64 :unsigned-long) -(cffi:defctype gsll::size - #-cffi-features:no-long-long uint64 - #+cffi-features:no-long-long - #.(progn (cerror "Use uint32 instead." - "This platform does not support long long types.") - uint32)) diff --git a/init/number-conversion.lisp b/init/number-conversion.lisp index 1d69f3b0826aba40e602c9424f19587336431ef4..36807057846833a78fa786462edc697a417d7caf 100644 --- a/init/number-conversion.lisp +++ b/init/number-conversion.lisp @@ -1,6 +1,6 @@ ;; Conversion of numbers C->CL ;; Liam Healy, Sun May 28 2006 - 22:04 -;; Time-stamp: <2008-02-17 18:54:32EST number-conversion.lisp> +;; Time-stamp: <2008-03-09 14:17:34EDT number-conversion.lisp> ;; $Id$ (in-package :gsl) @@ -70,3 +70,58 @@ (err ,(st-symbol decl) 'sf-result-e10))) (t `((,(cl-convert-function (st-type decl)) ,(st-symbol decl)))))) +;;;;**************************************************************************** +;;;; Types +;;;;**************************************************************************** + +;;; CL type definitions: +(deftype unsigned-byte8 () '(unsigned-byte 8)) +(deftype unsigned-byte16 () '(unsigned-byte 16)) +(deftype unsigned-byte32 () '(unsigned-byte 32)) +(deftype unsigned-byte64 () '(unsigned-byte 64)) + +;;; C type definitions from cffi-net/unixint.cffi.lisp: +(cffi:defctype uint8 :unsigned-char) +(cffi:defctype uint16 :unsigned-short) +(cffi:defctype uint32 :unsigned-int) +(cffi:defctype uint64 :unsigned-long) +(cffi:defctype int8 :char) +(cffi:defctype int16 :short) +(cffi:defctype int32 :int) +(cffi:defctype int64 :long) + +#-cffi-features:no-long-long +(cffi:defctype size uint64) + +#+cffi-features:no-long-long +(progn (cerror "Use :uint32 instead." "This platform does not support long long types.") + (cffi:defctype size uint32)) + +;;;(deftype unsigned-fixnum () `(integer 0 ,most-positive-fixnum)) + +(defparameter *type-names* + '( + (fixnum :int "_int") + (unsigned-fixnum :unsigned-int "_uint") + (single-float :float "_float") + (double-float :double "") + ;;(long-double :long "_long_double") + (complex gsl-complex "_complex") + (t nil "")) + "A list of type name mappings, each being a list + Lisp type, C type as CFFI understands it, and GSL + splice string.") + +(defun lookup-splice-name (cl-type) + (third (find cl-type *type-names* :key #'first))) + +(defun lookup-C-type (cl-type) + (second (find cl-type *type-names* :key #'first))) + +(defun splice-name (base-name keyword symbol) + "Make a new C name for a data function from a base name." + (let* ((insert (+ (search keyword base-name) (length keyword)))) + (concatenate 'string + (subseq base-name 0 insert) + (lookup-splice-name symbol) + (subseq base-name insert)))) diff --git a/init/utility.lisp b/init/utility.lisp deleted file mode 100644 index 2dac66e7c3c7ca998ddb238b056f72e9c6105592..0000000000000000000000000000000000000000 --- a/init/utility.lisp +++ /dev/null @@ -1,12 +0,0 @@ -;; Utility definitions -;; Liam Healy, Sun Dec 3 2006 - 10:21 -;; Time-stamp: <2008-03-02 21:43:01EST utility.lisp> -;; $Id$ - -(in-package :gsl) - -(defun make-symbol-from-strings (&rest strings) - "Construct a symbol by concatenating words with hyphens." - (intern (format nil "~{~:@(~a~)~^-~}" (mapcar #'string strings)) :gsl)) - -(defparameter *gsl-prefix* 'gsl) diff --git a/interpolation/spline-example.lisp b/interpolation/spline-example.lisp index fa706bcaa3e7d8c00f474ef65abfa1cc6fbc36a5..d11b81646f9fe19c4feb18e60a93534fb8d87213 100644 --- a/interpolation/spline-example.lisp +++ b/interpolation/spline-example.lisp @@ -1,6 +1,6 @@ ;; Example spline ;; Liam Healy, Sat Nov 10 2007 - 21:18 -;; Time-stamp: <2008-02-03 22:59:29EST spline-example.lisp> +;; Time-stamp: <2008-03-09 19:21:47EDT spline-example.lisp> ;; $Id$ (in-package :gsl) @@ -20,8 +20,8 @@ (multiple-value-bind (xarr yarr) (spline-example-arrays) (letm ((acc (acceleration)) - (cxarr (vector-double xarr)) - (cyarr (vector-double yarr)) + (cxarr (vector-double-float xarr)) + (cyarr (vector-double-float yarr)) (spline (spline *cubic-spline-interpolation* cxarr cyarr))) (loop for xi from (aref xarr 0) below (aref xarr 9) by 0.01d0 collect (list xi (evaluate-spline spline xi acc)))))) diff --git a/linear-algebra/blas1.lisp b/linear-algebra/blas1.lisp index e99f44bded39166bf9843baae76a977df6561ab0..feced31ce71c8e1423a686c76de228c78ab33a22 100644 --- a/linear-algebra/blas1.lisp +++ b/linear-algebra/blas1.lisp @@ -1,11 +1,11 @@ ;; BLAS level 1, Vector operations ;; Liam Healy, Wed Apr 26 2006 - 15:23 -;; Time-stamp: <2008-02-17 10:24:18EST blas1.lisp> +;; Time-stamp: <2008-03-09 19:35:09EDT blas1.lisp> ;; $Id$ (in-package :gsl) -;;; Currently only includes vector-single and vector-double routines. +;;; Currently only includes vector-single-float and vector-double-float routines. ;;; Not ported: routines that use raw vectors gsl_blas_drotg, gsl_blas_drotmg, gsl_blas_drotm ;;;;**************************************************************************** @@ -64,50 +64,50 @@ ((gsl-array result) :pointer)) :invalidate (result)) -(defmfun dot ((vec1 gsl-vector-single) (vec2 gsl-vector-single)) +(defmfun dot ((vec1 vector-single-float) (vec2 vector-single-float)) "gsl_blas_sdot" (((pointer vec1) :pointer) ((pointer vec2) :pointer) (result :float)) :type :method) -(defmfun norm ((vec gsl-vector-single)) +(defmfun norm ((vec vector-single-float)) "gsl_blas_snrm2" (((pointer vec) :pointer)) :type :method :c-return :float) -(defmfun asum ((vec gsl-vector-single)) +(defmfun asum ((vec vector-single-float)) "gsl_blas_sasum" (((pointer vec) :pointer)) :type :method :c-return :float) -(defmfun imax ((vec gsl-vector-single)) +(defmfun imax ((vec vector-single-float)) "gsl_blas_isamax" (((pointer vec) :pointer)) :type :method :c-return :int) -(defmfun blas-swap ((vec1 gsl-vector-single) (vec2 gsl-vector-single)) +(defmfun blas-swap ((vec1 vector-single-float) (vec2 vector-single-float)) "gsl_blas_sswap" (((pointer vec1) :pointer) ((pointer vec2) :pointer)) :type :method :invalidate (vec1 vec2)) -(defmfun blas-copy ((vec1 gsl-vector-single) (vec2 gsl-vector-single)) +(defmfun blas-copy ((vec1 vector-single-float) (vec2 vector-single-float)) "gsl_blas_scopy" (((pointer vec1) :pointer) ((pointer vec2) :pointer)) :type :method :invalidate (vec2)) -(defmfun axpy (alpha (vec1 gsl-vector-single) (vec2 gsl-vector-single)) +(defmfun axpy (alpha (vec1 vector-single-float) (vec2 vector-single-float)) "gsl_blas_saxpy" ((alpha :float) ((pointer vec1) :pointer) ((pointer vec2) :pointer)) :type :method :invalidate (vec2)) -(defmfun scal (alpha (vec gsl-vector-single)) +(defmfun scal (alpha (vec vector-single-float)) "gsl_blas_sscal" ((alpha :float) ((pointer vec) :pointer)) :type :method :invalidate (vec) :c-return :void) (defmfun rot - ((vec1 gsl-vector-single) (vec2 gsl-vector-single) + ((vec1 vector-single-float) (vec2 vector-single-float) (c float) (s float)) "gsl_blas_srot" (((pointer vec1) :pointer) ((pointer vec2) :pointer) (c :float) (s :float)) @@ -118,50 +118,50 @@ ;;;; Double ;;;;**************************************************************************** -(defmfun dot ((vec1 gsl-vector-double) (vec2 gsl-vector-double)) +(defmfun dot ((vec1 vector-double-float) (vec2 vector-double-float)) "gsl_blas_ddot" (((pointer vec1) :pointer) ((pointer vec2) :pointer) (result :double)) :type :method) -(defmfun norm ((vec gsl-vector-double)) +(defmfun norm ((vec vector-double-float)) "gsl_blas_dnrm2" (((pointer vec) :pointer)) :type :method :c-return :double) -(defmfun asum ((vec gsl-vector-double)) +(defmfun asum ((vec vector-double-float)) "gsl_blas_dasum" (((pointer vec) :pointer)) :type :method :c-return :double) -(defmfun imax ((vec gsl-vector-double)) +(defmfun imax ((vec vector-double-float)) "gsl_blas_idamax" (((pointer vec) :pointer)) :type :method :c-return :int) -(defmfun blas-swap ((vec1 gsl-vector-double) (vec2 gsl-vector-double)) +(defmfun blas-swap ((vec1 vector-double-float) (vec2 vector-double-float)) "gsl_blas_dswap" (((pointer vec1) :pointer) ((pointer vec2) :pointer)) :type :method :invalidate (vec1 vec2)) -(defmfun blas-copy ((vec1 gsl-vector-double) (vec2 gsl-vector-double)) +(defmfun blas-copy ((vec1 vector-double-float) (vec2 vector-double-float)) "gsl_blas_dcopy" (((pointer vec1) :pointer) ((pointer vec2) :pointer)) :type :method :invalidate (vec2)) -(defmfun axpy (alpha (vec1 gsl-vector-double) (vec2 gsl-vector-double)) +(defmfun axpy (alpha (vec1 vector-double-float) (vec2 vector-double-float)) "gsl_blas_daxpy" ((alpha :double) ((pointer vec1) :pointer) ((pointer vec2) :pointer)) :type :method :invalidate (vec2)) -(defmfun scal (alpha (vec gsl-vector-double)) +(defmfun scal (alpha (vec vector-double-float)) "gsl_blas_dscal" ((alpha :double) ((pointer vec) :pointer)) :type :method :invalidate (vec) :c-return :void) (defmfun rot - ((vec1 gsl-vector-double) (vec2 gsl-vector-double) + ((vec1 vector-double-float) (vec2 vector-double-float) (c float) (s float)) "gsl_blas_drot" (((pointer vec1) :pointer) ((pointer vec2) :pointer) (c :double) (s :double)) @@ -175,58 +175,58 @@ #| (make-tests blas1 ;; single - (letm ((a (vector-single #(1.0f0 2.0f0 3.0f0))) - (b (vector-single #(3.0f0 4.0f0 5.0f0)))) + (letm ((a (vector-single-float #(1.0f0 2.0f0 3.0f0))) + (b (vector-single-float #(3.0f0 4.0f0 5.0f0)))) (dot a b)) - (letm ((b (vector-single #(3.0f0 4.0f0 5.0f0)))) + (letm ((b (vector-single-float #(3.0f0 4.0f0 5.0f0)))) (norm b)) - (letm ((b (vector-single #(3.0f0 4.0f0 5.0f0)))) + (letm ((b (vector-single-float #(3.0f0 4.0f0 5.0f0)))) (asum b)) - (letm ((b (vector-single #(3.0f0 5.0f0 4.0f0)))) + (letm ((b (vector-single-float #(3.0f0 5.0f0 4.0f0)))) (imax b)) - (letm ((a (vector-single #(1.0f0 2.0f0 3.0f0))) - (b (vector-single #(3.0f0 4.0f0 5.0f0)))) + (letm ((a (vector-single-float #(1.0f0 2.0f0 3.0f0))) + (b (vector-single-float #(3.0f0 4.0f0 5.0f0)))) (setf (data a) #(1.0f0 2.0f0 3.0f0) (data b) #(3.0f0 4.0f0 5.0f0)) (axpy 2.0f0 a b) (data b)) - (letm ((b (vector-single #(3.0f0 4.0f0 5.0f0)))) + (letm ((b (vector-single-float #(3.0f0 4.0f0 5.0f0)))) (setf (data b) #(3.0f0 4.0f0 5.0f0)) (scal 2.0f0 b) (data b)) - (letm ((a (vector-single #(1.0f0 3.0f0))) - (b (vector-single #(8.0f0 9.0f0)))) + (letm ((a (vector-single-float #(1.0f0 3.0f0))) + (b (vector-single-float #(8.0f0 9.0f0)))) (rot a b (/ (sqrt 2.0f0)) (/ (sqrt 2.0f0))) (data b)) ;; double - (letm ((a (vector-double #(1.0d0 2.0d0 3.0d0))) - (b (vector-double #(3.0d0 4.0d0 5.0d0)))) + (letm ((a (vector-double-float #(1.0d0 2.0d0 3.0d0))) + (b (vector-double-float #(3.0d0 4.0d0 5.0d0)))) (dot a b)) - (letm ((b (vector-double #(3.0d0 4.0d0 5.0d0)))) + (letm ((b (vector-double-float #(3.0d0 4.0d0 5.0d0)))) (norm b)) - (letm ((b (vector-double #(3.0d0 4.0d0 5.0d0)))) + (letm ((b (vector-double-float #(3.0d0 4.0d0 5.0d0)))) (setf (data b) #(3.0d0 4.0d0 5.0d0)) (asum b)) - (letm ((b (vector-double #(3.0d0 5.0d0 4.0d0)))) + (letm ((b (vector-double-float #(3.0d0 5.0d0 4.0d0)))) (setf (data b) #(3.0d0 5.0d0 4.0d0)) (imax b)) - (letm ((a (vector-double #(1.0d0 2.0d0 3.0d0))) - (b (vector-double #(3.0d0 4.0d0 5.0d0)))) + (letm ((a (vector-double-float #(1.0d0 2.0d0 3.0d0))) + (b (vector-double-float #(3.0d0 4.0d0 5.0d0)))) (blas-swap a b) (data a)) - (letm ((a (vector-double #(1.0d0 2.0d0 3.0d0))) - (b (vector-double #(3.0d0 4.0d0 5.0d0)))) + (letm ((a (vector-double-float #(1.0d0 2.0d0 3.0d0))) + (b (vector-double-float #(3.0d0 4.0d0 5.0d0)))) (blas-copy b a) (data a)) - (letm ((a (vector-double #(1.0d0 2.0d0 3.0d0))) - (b (vector-double #(3.0d0 4.0d0 5.0d0)))) + (letm ((a (vector-double-float #(1.0d0 2.0d0 3.0d0))) + (b (vector-double-float #(3.0d0 4.0d0 5.0d0)))) (axpy 2.0d0 a b) (data b)) - (letm ((b (vector-double #(3.0d0 4.0d0 5.0d0)))) + (letm ((b (vector-double-float #(3.0d0 4.0d0 5.0d0)))) (scal 2.0d0 b) (data b)) - (letm ((a (vector-double #(1.0d0 3.0d0))) - (b (vector-double #(8.0d0 9.0d0)))) + (letm ((a (vector-double-float #(1.0d0 3.0d0))) + (b (vector-double-float #(8.0d0 9.0d0)))) (rot a b (/ (sqrt 2.0d0)) (/ (sqrt 2.0d0))) (data b))) |# @@ -235,95 +235,95 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 26.0) (MULTIPLE-VALUE-LIST - (LETM ((A (VECTOR-SINGLE #(1.0 2.0 3.0))) - (B (VECTOR-SINGLE #(3.0 4.0 5.0)))) + (LETM ((A (VECTOR-SINGLE-FLOAT #(1.0 2.0 3.0))) + (B (VECTOR-SINGLE-FLOAT #(3.0 4.0 5.0)))) (DOT A B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 7.071068) (MULTIPLE-VALUE-LIST - (LETM ((B (VECTOR-SINGLE #(3.0 4.0 5.0)))) + (LETM ((B (VECTOR-SINGLE-FLOAT #(3.0 4.0 5.0)))) (NORM B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 12.0) (MULTIPLE-VALUE-LIST - (LETM ((B (VECTOR-SINGLE #(3.0 4.0 5.0)))) + (LETM ((B (VECTOR-SINGLE-FLOAT #(3.0 4.0 5.0)))) (ASUM B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 1) (MULTIPLE-VALUE-LIST - (LETM ((B (VECTOR-SINGLE #(3.0 5.0 4.0)))) + (LETM ((B (VECTOR-SINGLE-FLOAT #(3.0 5.0 4.0)))) (IMAX B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(5.0 8.0 11.0)) (MULTIPLE-VALUE-LIST - (LETM ((A (VECTOR-SINGLE #(1.0 2.0 3.0))) - (B (VECTOR-SINGLE #(3.0 4.0 5.0)))) + (LETM ((A (VECTOR-SINGLE-FLOAT #(1.0 2.0 3.0))) + (B (VECTOR-SINGLE-FLOAT #(3.0 4.0 5.0)))) (SETF (DATA A) #(1.0 2.0 3.0) (DATA B) #(3.0 4.0 5.0)) (AXPY 2.0 A B) (DATA B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(6.0 8.0 10.0)) (MULTIPLE-VALUE-LIST - (LETM ((B (VECTOR-SINGLE #(3.0 4.0 5.0)))) + (LETM ((B (VECTOR-SINGLE-FLOAT #(3.0 4.0 5.0)))) (SETF (DATA B) #(3.0 4.0 5.0)) (SCAL 2.0 B) (DATA B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(4.9497476 4.2426405)) (MULTIPLE-VALUE-LIST - (LETM ((A (VECTOR-SINGLE #(1.0 3.0))) - (B (VECTOR-SINGLE #(8.0 9.0)))) + (LETM ((A (VECTOR-SINGLE-FLOAT #(1.0 3.0))) + (B (VECTOR-SINGLE-FLOAT #(8.0 9.0)))) (ROT A B (/ (SQRT 2.0)) (/ (SQRT 2.0))) (DATA B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 26.0d0) (MULTIPLE-VALUE-LIST - (LETM ((A (VECTOR-DOUBLE #(1.0d0 2.0d0 3.0d0))) - (B (VECTOR-DOUBLE #(3.0d0 4.0d0 5.0d0)))) + (LETM ((A (VECTOR-DOUBLE-FLOAT #(1.0d0 2.0d0 3.0d0))) + (B (VECTOR-DOUBLE-FLOAT #(3.0d0 4.0d0 5.0d0)))) (DOT A B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 7.0710678118654755d0) (MULTIPLE-VALUE-LIST - (LETM ((B (VECTOR-DOUBLE #(3.0d0 4.0d0 5.0d0)))) + (LETM ((B (VECTOR-DOUBLE-FLOAT #(3.0d0 4.0d0 5.0d0)))) (NORM B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 12.0d0) (MULTIPLE-VALUE-LIST - (LETM ((B (VECTOR-DOUBLE #(3.0d0 4.0d0 5.0d0)))) + (LETM ((B (VECTOR-DOUBLE-FLOAT #(3.0d0 4.0d0 5.0d0)))) (SETF (DATA B) #(3.0d0 4.0d0 5.0d0)) (ASUM B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 1) (MULTIPLE-VALUE-LIST - (LETM ((B (VECTOR-DOUBLE #(3.0d0 5.0d0 4.0d0)))) + (LETM ((B (VECTOR-DOUBLE-FLOAT #(3.0d0 5.0d0 4.0d0)))) (SETF (DATA B) #(3.0d0 5.0d0 4.0d0)) (IMAX B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(3.0d0 4.0d0 5.0d0)) (MULTIPLE-VALUE-LIST - (LETM ((A (VECTOR-DOUBLE #(1.0d0 2.0d0 3.0d0))) - (B (VECTOR-DOUBLE #(3.0d0 4.0d0 5.0d0)))) + (LETM ((A (VECTOR-DOUBLE-FLOAT #(1.0d0 2.0d0 3.0d0))) + (B (VECTOR-DOUBLE-FLOAT #(3.0d0 4.0d0 5.0d0)))) (BLAS-SWAP A B) (DATA A)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(3.0d0 4.0d0 5.0d0)) (MULTIPLE-VALUE-LIST - (LETM ((A (VECTOR-DOUBLE #(1.0d0 2.0d0 3.0d0))) - (B (VECTOR-DOUBLE #(3.0d0 4.0d0 5.0d0)))) + (LETM ((A (VECTOR-DOUBLE-FLOAT #(1.0d0 2.0d0 3.0d0))) + (B (VECTOR-DOUBLE-FLOAT #(3.0d0 4.0d0 5.0d0)))) (BLAS-COPY B A) (DATA A)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(5.0d0 8.0d0 11.0d0)) (MULTIPLE-VALUE-LIST - (LETM ((A (VECTOR-DOUBLE #(1.0d0 2.0d0 3.0d0))) - (B (VECTOR-DOUBLE #(3.0d0 4.0d0 5.0d0)))) + (LETM ((A (VECTOR-DOUBLE-FLOAT #(1.0d0 2.0d0 3.0d0))) + (B (VECTOR-DOUBLE-FLOAT #(3.0d0 4.0d0 5.0d0)))) (AXPY 2.0d0 A B) (DATA B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(6.0d0 8.0d0 10.0d0)) (MULTIPLE-VALUE-LIST - (LETM ((B (VECTOR-DOUBLE #(3.0d0 4.0d0 5.0d0)))) + (LETM ((B (VECTOR-DOUBLE-FLOAT #(3.0d0 4.0d0 5.0d0)))) (SCAL 2.0d0 B) (DATA B)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(4.949747468305832d0 4.242640687119286d0)) (MULTIPLE-VALUE-LIST - (LETM ((A (VECTOR-DOUBLE #(1.0d0 3.0d0))) - (B (VECTOR-DOUBLE #(8.0d0 9.0d0)))) + (LETM ((A (VECTOR-DOUBLE-FLOAT #(1.0d0 3.0d0))) + (B (VECTOR-DOUBLE-FLOAT #(8.0d0 9.0d0)))) (ROT A B (/ (SQRT 2.0d0)) (/ (SQRT 2.0d0))) (DATA B))))) diff --git a/linear-algebra/blas2.lisp b/linear-algebra/blas2.lisp index e3b0ff07c3db693e352573740c36c52d8c2a7ae0..07b7e4b2ae3da0ee424d3353517c976767644e17 100644 --- a/linear-algebra/blas2.lisp +++ b/linear-algebra/blas2.lisp @@ -1,6 +1,6 @@ ;; BLAS level 2, Matrix-vector operations ;; Liam Healy, Wed Apr 26 2006 - 21:08 -;; Time-stamp: <2008-02-17 10:36:36EST blas2.lisp> +;; Time-stamp: <2008-03-09 14:15:02EDT blas2.lisp> ;; $Id$ (in-package :gsl) @@ -105,47 +105,47 @@ (defmfun gemv (TransA alpha - (A gsl-matrix-single) (x gsl-vector-single) beta (y gsl-vector-single)) + (A matrix-single-float) (x vector-single-float) beta (y vector-single-float)) "gsl_blas_sgemv" ((transa cblas-transpose) (alpha :float) ((pointer A) gsl-matrix-c) ((pointer x) gsl-vector-c) (beta :float) ((pointer y) gsl-vector-c)) :type :method) -(defmfun trmv (uplo transa diag (A gsl-matrix-single) (x gsl-vector-single)) +(defmfun trmv (uplo transa diag (A matrix-single-float) (x vector-single-float)) "gsl_blas_strmv" ((uplo cblas-uplo) (transa cblas-transpose) (diag cblas-diag) ((pointer A) gsl-matrix-c) ((pointer x) gsl-vector-c)) :type :method) -(defmfun trsv (uplo transa diag (A gsl-matrix-single) (x gsl-vector-single)) +(defmfun trsv (uplo transa diag (A matrix-single-float) (x vector-single-float)) "gsl_blas_strsv" ((uplo cblas-uplo) (transa cblas-transpose) (diag cblas-diag) ((pointer A) gsl-matrix-c) ((pointer x) gsl-vector-c)) :type :method) (defmfun symv - (uplo alpha (A gsl-matrix-single) (x gsl-vector-single) - beta (y gsl-vector-single)) + (uplo alpha (A matrix-single-float) (x vector-single-float) + beta (y vector-single-float)) "gsl_blas_ssymv" ((uplo cblas-uplo) (alpha :float) ((pointer A) gsl-matrix-c) ((pointer x) gsl-vector-c) (beta :float) ((pointer y) gsl-vector-c)) :type :method) (defmfun ger - (alpha (x gsl-vector-single) (y gsl-vector-single) (A gsl-matrix-single)) + (alpha (x vector-single-float) (y vector-single-float) (A matrix-single-float)) "gsl_blas_sger" ((alpha :float) ((pointer x) gsl-vector-c) ((pointer y) gsl-vector-c) ((pointer A) gsl-matrix-c)) :type :method) -(defmfun syr (uplo alpha (x gsl-vector-single) (A gsl-matrix-single)) +(defmfun syr (uplo alpha (x vector-single-float) (A matrix-single-float)) "gsl_blas_ssyr" ((uplo cblas-uplo) (alpha :float) ((pointer x) gsl-vector-c) ((pointer A) gsl-matrix-c)) :type :method) (defmfun syr2 - (uplo alpha (x gsl-vector-single) (y gsl-vector-single) (A gsl-matrix-single)) + (uplo alpha (x vector-single-float) (y vector-single-float) (A matrix-single-float)) "gsl_blas_ssyr2" ((uplo cblas-uplo) (alpha :float) ((pointer x) gsl-vector-c) ((pointer y) gsl-vector-c) @@ -158,47 +158,47 @@ (defmfun gemv (TransA alpha - (A gsl-matrix-double) (x gsl-vector-double) beta (y gsl-vector-double)) + (A matrix-double-float) (x vector-double-float) beta (y vector-double-float)) "gsl_blas_dgemv" ((transa cblas-transpose) (alpha :double) ((pointer A) gsl-matrix-c) ((pointer x) gsl-vector-c) (beta :double) ((pointer y) gsl-vector-c)) :type :method) -(defmfun trmv (uplo transa diag (A gsl-matrix-double) (x gsl-vector-double)) +(defmfun trmv (uplo transa diag (A matrix-double-float) (x vector-double-float)) "gsl_blas_dtrmv" ((uplo cblas-uplo) (transa cblas-transpose) (diag cblas-diag) ((pointer A) gsl-matrix-c) ((pointer x) gsl-vector-c)) :type :method) -(defmfun trsv (uplo transa diag (A gsl-matrix-double) (x gsl-vector-double)) +(defmfun trsv (uplo transa diag (A matrix-double-float) (x vector-double-float)) "gsl_blas_dtrsv" ((uplo cblas-uplo) (transa cblas-transpose) (diag cblas-diag) ((pointer A) gsl-matrix-c) ((pointer x) gsl-vector-c)) :type :method) (defmfun symv - (uplo alpha (A gsl-matrix-double) (x gsl-vector-double) - beta (y gsl-vector-double)) + (uplo alpha (A matrix-double-float) (x vector-double-float) + beta (y vector-double-float)) "gsl_blas_dsymv" ((uplo cblas-uplo) (alpha :double) ((pointer A) gsl-matrix-c) ((pointer x) gsl-vector-c) (beta :double) ((pointer y) gsl-vector-c)) :type :method) (defmfun ger - (alpha (x gsl-vector-double) (y gsl-vector-double) (A gsl-matrix-double)) + (alpha (x vector-double-float) (y vector-double-float) (A matrix-double-float)) "gsl_blas_dger" ((alpha :double) ((pointer x) gsl-vector-c) ((pointer y) gsl-vector-c) ((pointer A) gsl-matrix-c)) :type :method) -(defmfun syr (uplo alpha (x gsl-vector-double) (A gsl-matrix-double)) +(defmfun syr (uplo alpha (x vector-double-float) (A matrix-double-float)) "gsl_blas_dsyr" ((uplo cblas-uplo) (alpha :double) ((pointer x) gsl-vector-c) ((pointer A) gsl-matrix-c)) :type :method) (defmfun syr2 - (uplo alpha (x gsl-vector-double) (y gsl-vector-double) (A gsl-matrix-double)) + (uplo alpha (x vector-double-float) (y vector-double-float) (A matrix-double-float)) "gsl_blas_dsyr2" ((uplo cblas-uplo) (alpha :double) ((pointer x) gsl-vector-c) ((pointer y) gsl-vector-c) diff --git a/linear-algebra/blas3.lisp b/linear-algebra/blas3.lisp index 3c50286b6dbf7ebc822637f2f3ce3617bb66ae42..32aeb5497d3447bf95ddde238e93c18361427195 100644 --- a/linear-algebra/blas3.lisp +++ b/linear-algebra/blas3.lisp @@ -1,6 +1,6 @@ ;; BLAS level 3, Matrix-matrix operations ;; Liam Healy, Wed Apr 26 2006 - 21:08 -;; Time-stamp: <2008-02-17 10:39:56EST blas3.lisp> +;; Time-stamp: <2008-03-09 14:13:42EDT blas3.lisp> ;; $Id$ (in-package :gsl) @@ -95,8 +95,8 @@ ;;;;**************************************************************************** (defmfun gemm - (TransA TransB alpha (A gsl-matrix-single) (B gsl-matrix-single) - beta (C gsl-matrix-single)) + (TransA TransB alpha (A matrix-single-float) (B matrix-single-float) + beta (C matrix-single-float)) "gsl_blas_sgemm" ((transa cblas-transpose) (transb cblas-transpose) (alpha :float) ((pointer A) gsl-matrix-c) ((pointer B) gsl-matrix-c) @@ -104,8 +104,8 @@ :type :method) (defmfun symm - (side uplo alpha (A gsl-matrix-single) (B gsl-matrix-single) - beta (C gsl-matrix-single)) + (side uplo alpha (A matrix-single-float) (B matrix-single-float) + beta (C matrix-single-float)) "gsl_blas_ssymm" ((side cblas-side) (uplo cblas-uplo) (alpha :float) ((pointer A) gsl-matrix-c) ((pointer B) gsl-matrix-c) @@ -113,29 +113,29 @@ :type :method) (defmfun trmm - (side uplo transa diag alpha (A gsl-matrix-single) (B gsl-matrix-single)) + (side uplo transa diag alpha (A matrix-single-float) (B matrix-single-float)) "gsl_blas_strmm" ((side cblas-side) (uplo cblas-uplo) (transa cblas-transpose) (diag cblas-diag) (alpha :float) ((pointer A) gsl-matrix-c) ((pointer B) gsl-matrix-c)) :type :method) (defmfun trsm - (side uplo transa diag alpha (A gsl-matrix-single) (B gsl-matrix-single)) + (side uplo transa diag alpha (A matrix-single-float) (B matrix-single-float)) "gsl_blas_strsm" ((side cblas-side) (uplo cblas-uplo) (transa cblas-transpose) (diag cblas-diag) (alpha :float) ((pointer A) gsl-matrix-c) ((pointer B) gsl-matrix-c)) :type :method) (defmfun syrk - (uplo trans alpha (A gsl-matrix-single) beta (C gsl-matrix-single)) + (uplo trans alpha (A matrix-single-float) beta (C matrix-single-float)) "gsl_blas_ssyrk" ((uplo cblas-uplo) (trans cblas-transpose) (alpha :float) ((pointer A) gsl-matrix-c) (beta :float) ((pointer C) gsl-matrix-c)) :type :method) (defmfun syr2k - (uplo trans alpha (A gsl-matrix-single) (B gsl-matrix-single) - beta (C gsl-matrix-single)) + (uplo trans alpha (A matrix-single-float) (B matrix-single-float) + beta (C matrix-single-float)) "gsl_blas_ssyr2k" ((uplo cblas-uplo) (trans cblas-transpose) (alpha :float) ((pointer A) gsl-matrix-c) ((pointer B) gsl-matrix-c) @@ -147,8 +147,8 @@ ;;;;**************************************************************************** (defmfun gemm - (TransA TransB alpha (A gsl-matrix-double) (B gsl-matrix-double) - beta (C gsl-matrix-double)) + (TransA TransB alpha (A matrix-double-float) (B matrix-double-float) + beta (C matrix-double-float)) "gsl_blas_dgemm" ((transa cblas-transpose) (transb cblas-transpose) (alpha :double) (A gsl-matrix-c) (B gsl-matrix-c) @@ -156,8 +156,8 @@ :type :method) (defmfun symm - (side uplo alpha (A gsl-matrix-double) (B gsl-matrix-double) - beta (C gsl-matrix-double)) + (side uplo alpha (A matrix-double-float) (B matrix-double-float) + beta (C matrix-double-float)) "gsl_blas_dsymm" ((side cblas-side) (uplo cblas-uplo) (alpha :double) ((pointer A) gsl-matrix-c) ((pointer B) gsl-matrix-c) @@ -165,29 +165,29 @@ :type :method) (defmfun trmm - (side uplo transa diag alpha (A gsl-matrix-double) (B gsl-matrix-double)) + (side uplo transa diag alpha (A matrix-double-float) (B matrix-double-float)) "gsl_blas_dtrmm" ((side cblas-side) (uplo cblas-uplo) (transa cblas-transpose) (diag cblas-diag) (alpha :double) ((pointer A) gsl-matrix-c) ((pointer B) gsl-matrix-c)) :type :method) (defmfun trsm - (side uplo transa diag alpha (A gsl-matrix-double) (B gsl-matrix-double)) + (side uplo transa diag alpha (A matrix-double-float) (B matrix-double-float)) "gsl_blas_dtrsm" ((side cblas-side) (uplo cblas-uplo) (transa cblas-transpose) (diag cblas-diag) (alpha :double) ((pointer A) gsl-matrix-c) ((pointer B) gsl-matrix-c)) :type :method) (defmfun syrk - (uplo trans alpha (A gsl-matrix-double) beta (C gsl-matrix-double)) + (uplo trans alpha (A matrix-double-float) beta (C matrix-double-float)) "gsl_blas_dsyrk" ((uplo cblas-uplo) (trans cblas-transpose) (alpha :double) ((pointer A) gsl-matrix-c) (alpha :double) ((pointer C) gsl-matrix-c)) :type :method) (defmfun syr2k - (uplo trans (alpha float) (A gsl-matrix-double) (B gsl-matrix-double) - beta (C gsl-matrix-double)) + (uplo trans (alpha float) (A matrix-double-float) (B matrix-double-float) + beta (C matrix-double-float)) "gsl_blas_dsyr2k" ((uplo cblas-uplo) (trans cblas-transpose) (alpha :double) ((pointer A) gsl-matrix-c) ((pointer B) gsl-matrix-c) diff --git a/linear-algebra/lu.lisp b/linear-algebra/lu.lisp index e21985fdf29d14c790a1f8591faeee17d18fdf03..05757bf47d100c0f1c4a8b7fa4e25ef63de92002 100644 --- a/linear-algebra/lu.lisp +++ b/linear-algebra/lu.lisp @@ -1,6 +1,6 @@ ;; LU decomposition ;; Liam Healy, Thu Apr 27 2006 - 12:42 -;; Time-stamp: <2008-02-17 11:05:06EST lu.lisp> +;; Time-stamp: <2008-03-09 14:34:41EDT lu.lisp> ;; $Id$ (in-package :gsl) @@ -82,13 +82,13 @@ decomposition, LU. The determinant is computed as the product of the diagonal elements of U and the sign of the row permutation signum.")) -(defmfun LU-det ((LU gsl-matrix-double) signum) +(defmfun LU-det ((LU matrix-double-float) signum) "gsl_linalg_LU_det" (((pointer LU) gsl-matrix-c) (signum :int)) :type :method :c-return :double) -(defmfun LU-det ((LU gsl-matrix-complex) signum) +(defmfun LU-det ((LU matrix-complex) signum) "gsl_linalg_complex_LU_det" (((pointer LU) gsl-matrix-c) (signum :int)) :type :method diff --git a/monte-carlo.lisp b/monte-carlo.lisp index 34dc783dc636288948898a42d8ed7cc8f66fbb7f..659126c8b7778287c9422ff045c4b3267d4fda39 100644 --- a/monte-carlo.lisp +++ b/monte-carlo.lisp @@ -1,6 +1,6 @@ ;; Monte Carlo Integration ;; Liam Healy Sat Feb 3 2007 - 17:42 -;; Time-stamp: <2008-02-17 18:29:59EST monte-carlo.lisp> +;; Time-stamp: <2008-03-09 19:29:43EDT monte-carlo.lisp> ;; $Id$ (in-package :gsl) @@ -291,22 +291,22 @@ (defun random-walk-plain-example (&optional (nsamples 500000)) (letm ((ws (monte-carlo-plain 3)) - (lower (vector-double #(0.0d0 0.0d0 0.0d0))) - (upper (vector-double (vector pi pi pi))) + (lower (vector-double-float #(0.0d0 0.0d0 0.0d0))) + (upper (vector-double-float (vector pi pi pi))) (rng (random-number-generator *mt19937* 0))) (monte-carlo-integrate-plain monte-carlo-g lower upper nsamples rng ws))) (defun random-walk-miser-example (&optional (nsamples 500000)) (letm ((ws (monte-carlo-miser 3)) - (lower (vector-double #(0.0d0 0.0d0 0.0d0))) - (upper (vector-double (vector pi pi pi))) + (lower (vector-double-float #(0.0d0 0.0d0 0.0d0))) + (upper (vector-double-float (vector pi pi pi))) (rng (random-number-generator *mt19937* 0))) (monte-carlo-integrate-miser monte-carlo-g lower upper nsamples rng ws))) (defun random-walk-vegas-example (&optional (nsamples 500000)) (letm ((ws (monte-carlo-vegas 3)) - (lower (vector-double #(0.0d0 0.0d0 0.0d0))) - (upper (vector-double (vector pi pi pi))) + (lower (vector-double-float #(0.0d0 0.0d0 0.0d0))) + (upper (vector-double-float (vector pi pi pi))) (rng (random-number-generator *mt19937* 0))) (monte-carlo-integrate-vegas monte-carlo-g lower upper nsamples rng ws))) diff --git a/polynomial.lisp b/polynomial.lisp index 3b6b119998e9be79e016cd73e0eb8b88e8941715..2bbf44bdd263798142f58cf251d6f03a6e3f8f59 100644 --- a/polynomial.lisp +++ b/polynomial.lisp @@ -1,6 +1,6 @@ ;; Polynomials ;; Liam Healy, Tue Mar 21 2006 - 18:33 -;; Time-stamp: <2008-02-23 18:49:15EST polynomial.lisp> +;; Time-stamp: <2008-03-09 19:29:15EDT polynomial.lisp> ;; $Id$ (in-package :gsl) @@ -40,10 +40,10 @@ the arrays xa and ya. The output is the divided-differences of (xa,ya) stored in an gsl-vector of the same length as xa and ya." - (letm ((xad (vector-double xa)) - (yad (vector-double ya))) + (letm ((xad (vector-double-float xa)) + (yad (vector-double-float ya))) (divided-difference-int - (make-data 'vector-double nil (length xa)) + (make-data 'vector-double-float nil (length xa)) xad yad))) (defmfun polynomial-eval-divided-difference (dd xa x) @@ -151,8 +151,8 @@ the packed complex array z of length 2(n-1), alternating real and imaginary parts." (let ((len (length coefficients))) - (letm ((coef (vector-double coefficients)) - (answer (vector-double (* 2 (1- len)))) + (letm ((coef (vector-double-float coefficients)) + (answer (vector-double-float (* 2 (1- len)))) (ws (complex-workspace len))) (values-list (polynomial-solve-ws coef ws answer))))) @@ -177,7 +177,7 @@ #| (make-tests polynomial - (letm ((vec (vector-double #(1.0d0 2.0d0 3.0d0)))) + (letm ((vec (vector-double-float #(1.0d0 2.0d0 3.0d0)))) (polynomial-eval vec -1.0d0)) (solve-quadratic 1.0d0 0.0d0 1.0d0) (solve-quadratic 1.0d0 -2.0d0 1.0d0) @@ -192,7 +192,7 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 2.0d0) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(1.0d0 2.0d0 3.0d0)))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(1.0d0 2.0d0 3.0d0)))) (POLYNOMIAL-EVAL VEC -1.0d0)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST (LIST) (LIST)) diff --git a/random/dirichlet.lisp b/random/dirichlet.lisp index 587bd0b00fd4f4df6b6fa47d231418f3fca809d6..190d35c1024e31a22aa847e70839e980c28459db 100644 --- a/random/dirichlet.lisp +++ b/random/dirichlet.lisp @@ -1,6 +1,6 @@ ;; Dirichlet distribution ;; Liam Healy, Sun Oct 29 2006 -;; Time-stamp: <2008-02-17 13:33:49EST dirichlet.lisp> +;; Time-stamp: <2008-03-09 19:29:16EDT dirichlet.lisp> ;; $Id$ (in-package :gsl) @@ -58,15 +58,15 @@ #| (make-tests dirichlet (letm ((rng (random-number-generator *mt19937* 0)) - (alpha (vector-double #(1.0d0 2.0d0 3.0d0 4.0d0))) - (theta (vector-double 4))) + (alpha (vector-double-float #(1.0d0 2.0d0 3.0d0 4.0d0))) + (theta (vector-double-float 4))) (dirichlet rng alpha theta) (data theta)) - (letm ((alpha (vector-double #(1.0d0 2.0d0 3.0d0 4.0d0))) - (theta (vector-double #(0.1d0 0.3d0 0.4d0 0.2d0)))) + (letm ((alpha (vector-double-float #(1.0d0 2.0d0 3.0d0 4.0d0))) + (theta (vector-double-float #(0.1d0 0.3d0 0.4d0 0.2d0)))) (dirichlet-pdf alpha theta)) - (letm ((alpha (vector-double #(1.0d0 2.0d0 3.0d0 4.0d0))) - (theta (vector-double #(0.1d0 0.3d0 0.4d0 0.2d0)))) + (letm ((alpha (vector-double-float #(1.0d0 2.0d0 3.0d0 4.0d0))) + (theta (vector-double-float #(0.1d0 0.3d0 0.4d0 0.2d0)))) (dirichlet-log-pdf alpha theta))) |# @@ -78,21 +78,21 @@ (MULTIPLE-VALUE-LIST (LETM ((RNG (RANDOM-NUMBER-GENERATOR *MT19937* 0)) - (ALPHA (VECTOR-DOUBLE #(1.0d0 2.0d0 3.0d0 4.0d0))) - (THETA (VECTOR-DOUBLE 4))) + (ALPHA (VECTOR-DOUBLE-FLOAT #(1.0d0 2.0d0 3.0d0 4.0d0))) + (THETA (VECTOR-DOUBLE-FLOAT 4))) (DIRICHLET RNG ALPHA THETA) (DATA THETA)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 2.8800000000000043d0) (MULTIPLE-VALUE-LIST (LETM - ((ALPHA (VECTOR-DOUBLE #(1.0d0 2.0d0 3.0d0 4.0d0))) - (THETA (VECTOR-DOUBLE #(0.1d0 0.3d0 0.4d0 0.2d0)))) + ((ALPHA (VECTOR-DOUBLE-FLOAT #(1.0d0 2.0d0 3.0d0 4.0d0))) + (THETA (VECTOR-DOUBLE-FLOAT #(0.1d0 0.3d0 0.4d0 0.2d0)))) (DIRICHLET-PDF ALPHA THETA)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 1.057790294147856d0) (MULTIPLE-VALUE-LIST (LETM - ((ALPHA (VECTOR-DOUBLE #(1.0d0 2.0d0 3.0d0 4.0d0))) - (THETA (VECTOR-DOUBLE #(0.1d0 0.3d0 0.4d0 0.2d0)))) + ((ALPHA (VECTOR-DOUBLE-FLOAT #(1.0d0 2.0d0 3.0d0 4.0d0))) + (THETA (VECTOR-DOUBLE-FLOAT #(0.1d0 0.3d0 0.4d0 0.2d0)))) (DIRICHLET-LOG-PDF ALPHA THETA))))) diff --git a/random/discrete.lisp b/random/discrete.lisp index dadc7aeab39aeb369999fd4c5a063c7aadb4c18b..4b0da47dc6994671252ae9f1fd894551934dfea3 100644 --- a/random/discrete.lisp +++ b/random/discrete.lisp @@ -1,6 +1,6 @@ ;; Discrete random variables ;; Liam Healy, Sat Nov 11 2006 - 21:51 -;; Time-stamp: <2008-02-17 13:36:26EST discrete.lisp> +;; Time-stamp: <2008-03-09 19:29:15EDT discrete.lisp> ;; $Id$ (in-package :gsl) @@ -60,13 +60,13 @@ (make-tests discrete ;; Must have two letms because the vector value is not set until ;; the body, but the discrete-random needs that set value. - (letm ((probabilities (vector-double #(0.25d0 0.5d0 0.25d0)))) + (letm ((probabilities (vector-double-float #(0.25d0 0.5d0 0.25d0)))) (letm ((table (discrete-random probabilities)) (rng (random-number-generator *mt19937* 0))) (loop for i from 0 to 10 collect (discrete rng table)))) - (letm ((probabilities (vector-double #(0.25d0 0.5d0 0.25d0)))) + (letm ((probabilities (vector-double-float #(0.25d0 0.5d0 0.25d0)))) (letm ((table (discrete-random probabilities))) (discrete-pdf 1 table)))) |# @@ -76,7 +76,7 @@ (LIST (LIST 1 0 1 1 0 1 1 2 1 2 2)) (MULTIPLE-VALUE-LIST (LETM ((PROBABILITIES - (VECTOR-DOUBLE #(0.25d0 0.5d0 0.25d0)))) + (VECTOR-DOUBLE-FLOAT #(0.25d0 0.5d0 0.25d0)))) (LETM ((TABLE (DISCRETE-RANDOM PROBABILITIES)) (RNG (RANDOM-NUMBER-GENERATOR *MT19937* 0))) (LOOP FOR I FROM 0 TO 10 COLLECT @@ -84,7 +84,7 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 0.5d0) (MULTIPLE-VALUE-LIST - (LETM ((PROBABILITIES (VECTOR-DOUBLE #(0.25d0 0.5d0 0.25d0)))) + (LETM ((PROBABILITIES (VECTOR-DOUBLE-FLOAT #(0.25d0 0.5d0 0.25d0)))) (LETM ((TABLE (DISCRETE-RANDOM PROBABILITIES))) (DISCRETE-PDF 1 TABLE)))))) diff --git a/random/multinomial.lisp b/random/multinomial.lisp index 7539919911adf26fc8819649c0a93dd0b96e7c2b..5e64569b7d0c7c442c23f435c0eefced9df7abd3 100644 --- a/random/multinomial.lisp +++ b/random/multinomial.lisp @@ -1,6 +1,6 @@ ;; Multinomial distribution ;; Liam Healy, Sat Nov 25 2006 - 16:00 -;; Time-stamp: <2008-02-17 18:31:31EST multinomial.lisp> +;; Time-stamp: <2008-03-09 19:29:15EDT multinomial.lisp> ;; $Id$ (in-package :gsl) @@ -51,15 +51,15 @@ #| (make-tests multinomial (letm ((rng (random-number-generator *mt19937* 0)) - (p (vector-double #(0.1d0 0.2d0 0.3d0 0.4d0))) + (p (vector-double-float #(0.1d0 0.2d0 0.3d0 0.4d0))) (n (vector-fixnum 4))) (multinomial rng 8 p n) (data n)) - (letm ((p (vector-double #(0.1d0 0.2d0 0.3d0 0.4d0))) + (letm ((p (vector-double-float #(0.1d0 0.2d0 0.3d0 0.4d0))) (n (vector-fixnum 4))) (setf (data n) #(5 0 1 2)) (multinomial-pdf p N)) - (letm ((p (vector-double #(0.1d0 0.2d0 0.3d0 0.4d0))) + (letm ((p (vector-double-float #(0.1d0 0.2d0 0.3d0 0.4d0))) (n (vector-fixnum 4))) (setf (data n) #(5 0 1 2)) (multinomial-log-pdf p n))) @@ -70,7 +70,7 @@ (LIST #(5 0 1 2)) (MULTIPLE-VALUE-LIST (LETM ((RNG (RANDOM-NUMBER-GENERATOR *MT19937* 0)) - (P (VECTOR-DOUBLE #(0.1d0 0.2d0 0.3d0 0.4d0))) + (P (VECTOR-DOUBLE-FLOAT #(0.1d0 0.2d0 0.3d0 0.4d0))) (N (VECTOR-FIXNUM 4))) (MULTINOMIAL RNG 8 P N) (DATA N)))) @@ -78,14 +78,14 @@ (LIST 8.064000000000026d-5) (MULTIPLE-VALUE-LIST (LETM - ((P (VECTOR-DOUBLE #(0.1d0 0.2d0 0.3d0 0.4d0))) + ((P (VECTOR-DOUBLE-FLOAT #(0.1d0 0.2d0 0.3d0 0.4d0))) (N (VECTOR-FIXNUM 4))) (SETF (DATA N) #(5 0 1 2)) (MULTINOMIAL-PDF P N)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST -9.425515753641212d0) (MULTIPLE-VALUE-LIST (LETM - ((P (VECTOR-DOUBLE #(0.1d0 0.2d0 0.3d0 0.4d0))) + ((P (VECTOR-DOUBLE-FLOAT #(0.1d0 0.2d0 0.3d0 0.4d0))) (N (VECTOR-FIXNUM 4))) (SETF (DATA N) #(5 0 1 2)) (MULTINOMIAL-LOG-PDF P N))))) diff --git a/random/quasi.lisp b/random/quasi.lisp index d36ffe34e9327d2ec4988187c44f8e67a9a66c44..203bb040221f783d772547302516026c30c52ff2 100644 --- a/random/quasi.lisp +++ b/random/quasi.lisp @@ -1,6 +1,6 @@ ;; Quasi-random sequences in arbitrary dimensions. ;; Liam Healy, Sun Jul 16 2006 - 15:54 -;; Time-stamp: <2008-02-17 12:19:07EST quasi.lisp> +;; Time-stamp: <2008-03-09 19:29:16EDT quasi.lisp> ;; $Id$ (in-package :gsl) @@ -128,7 +128,7 @@ (make-tests quasi-random-number-generators ;; This example is given in the GSL documentation (letm ((gen (quasi-random-number-generator 2 *sobol*)) - (vec (vector-double 2))) + (vec (vector-double-float 2))) (loop repeat 5 do (qrng-get gen vec) append (coerce (data vec) 'list)))) @@ -142,7 +142,7 @@ (MULTIPLE-VALUE-LIST (LETM ((GEN (QUASI-RANDOM-NUMBER-GENERATOR 2 *SOBOL*)) - (VEC (VECTOR-DOUBLE 2))) + (VEC (VECTOR-DOUBLE-FLOAT 2))) (LOOP REPEAT 5 DO (QRNG-GET GEN VEC) APPEND (COERCE (DATA VEC) 'LIST)))))) diff --git a/series-acceleration.lisp b/series-acceleration.lisp index 79218de9a8201e378a8f4cdfda48fccd4fff29c1..238fa4331d4dd8f424ebab62f8afa3a2f270bf3e 100644 --- a/series-acceleration.lisp +++ b/series-acceleration.lisp @@ -1,6 +1,6 @@ ;; Series acceleration. ;; Liam Healy, Wed Nov 21 2007 - 18:41 -;; Time-stamp: <2008-02-23 18:49:18EST series-acceleration.lisp> +;; Time-stamp: <2008-03-09 19:21:47EDT series-acceleration.lisp> ;; $Id$ (in-package :gsl) @@ -110,7 +110,7 @@ (sum 0.0d0) (zeta2 (/ (expt pi 2) 6))) (letm ((levin (levin maxterms)) - (array (vector-double maxterms))) + (array (vector-double-float maxterms))) (dotimes (n maxterms) (setf (maref array n) (coerce (/ (expt (1+ n) 2)) 'double-float)) (incf sum (maref array n))) diff --git a/solve-minimize-fit/linear-least-squares.lisp b/solve-minimize-fit/linear-least-squares.lisp index 5549af8c3b9fc8d7b48f75789cd07188de010d27..4b29a6d6b72509e0d3546f87168f64da66ba5889 100644 --- a/solve-minimize-fit/linear-least-squares.lisp +++ b/solve-minimize-fit/linear-least-squares.lisp @@ -1,6 +1,6 @@ ;; Linear least squares, or linear regression ;; Liam Healy <2008-01-21 12:41:46EST linear-least-squares.lisp> -;; Time-stamp: <2008-02-23 19:43:59EST linear-least-squares.lisp> +;; Time-stamp: <2008-03-09 19:30:56EDT linear-least-squares.lisp> ;; $Id$ (in-package :gsl) @@ -258,9 +258,9 @@ (defun univariate-linear-least-squares-example () "First example in Section 36.5 of the GSL manual." ;; Results not given in manual so not verified yet. - (letm ((x (vector-double #(1970.0d0 1980.0d0 1990.0d0 2000.0d0))) - (y (vector-double #(12.0d0 11.0d0 14.0d0 13.0d0))) - (w (vector-double #(0.1d0 0.2d0 0.3d0 0.4d0)))) + (letm ((x (vector-double-float #(1970.0d0 1980.0d0 1990.0d0 2000.0d0))) + (y (vector-double-float #(12.0d0 11.0d0 14.0d0 13.0d0))) + (w (vector-double-float #(0.1d0 0.2d0 0.3d0 0.4d0)))) (multiple-value-bind (c0 c1 cov00 cov01 cov11 chisq) (weighted-linear-fit x w y) (format t "~&Best fit: Y = ~8,5f + ~8,5f X" c0 c1) @@ -301,11 +301,11 @@ (defun mv-linear-least-squares-example (data) "Second example in Section 36.5 of the GSL manual." (letm ((n (length data)) chisq - (x (matrix-double n 3)) - (cov (matrix-double 3 3)) - (y (vector-double n)) - (w (vector-double n)) - (c (vector-double 3))) + (x (matrix-double-float n 3)) + (cov (matrix-double-float 3 3)) + (y (vector-double-float n)) + (w (vector-double-float n)) + (c (vector-double-float 3))) (loop for i from 0 for row in data do (setf (maref X i 0) 1.0d0 diff --git a/solve-minimize-fit/minimization-multi.lisp b/solve-minimize-fit/minimization-multi.lisp index 988c891415fdfa30a13fe5398df895fe9e2f1752..b0ce9ea1dbf4e71ed6f0bdcff9c93272e3f5d831 100644 --- a/solve-minimize-fit/minimization-multi.lisp +++ b/solve-minimize-fit/minimization-multi.lisp @@ -1,13 +1,13 @@ ;; Multivariate minimization. ;; Liam Healy <Tue Jan 8 2008 - 21:28> -;; Time-stamp: <2008-02-23 18:49:17EST minimization-multi.lisp> +;; Time-stamp: <2008-03-09 19:29:20EDT minimization-multi.lisp> ;; $Id$ (in-package :gsl) ;; In the parabaloid example, I notice that the consruct ;; (min-test-gradient (mfdfminimizer-gradient minimizer) 1.0d-3) -;; is constructing a CL vector-double (in mfdfminimizer-gradient) and +;; is constructing a CL vector-double-float (in mfdfminimizer-gradient) and ;; then immediately pulling out the pointer (in min-test-gradient). It ;; is easy enough to eliminate this, but then mfdfminimizer-gradient ;; would not be useful to a CL user. @@ -348,7 +348,7 @@ (letm ((minimizer (mfdfminimizer *conjugate-fletcher-reeves* 2 parabaloid initial 0.01d0 1.0d-4)) - (initial (vector-double #(5.0d0 7.0d0)))) + (initial (vector-double-float #(5.0d0 7.0d0)))) (loop with status = T for iter from 0 below 100 while status @@ -375,8 +375,8 @@ (def-minimization-functions parabaloid-f 2) (defun multimin-example-nelder-mead () - (letm ((initial (vector-double #(5.0d0 7.0d0))) - (step-size (vector-double 2))) + (letm ((initial (vector-double-float #(5.0d0 7.0d0))) + (step-size (vector-double-float 2))) (set-all step-size 1.0d0) (letm ((minimizer (mfminimizer *simplex-nelder-mead* 2 parabaloid-f initial step-size))) diff --git a/solve-minimize-fit/nonlinear-least-squares.lisp b/solve-minimize-fit/nonlinear-least-squares.lisp index 0791ef9b2cf4c4c7ff9abc8cf7f2e54d7aa685f4..03ed2e094d5d4f188261563df99f03c8206199b6 100644 --- a/solve-minimize-fit/nonlinear-least-squares.lisp +++ b/solve-minimize-fit/nonlinear-least-squares.lisp @@ -1,6 +1,6 @@ ;; Nonlinear least squares fitting. ;; Liam Healy, 2008-02-09 12:59:16EST nonlinear-least-squares.lisp -;; Time-stamp: <2008-02-23 18:49:18EST nonlinear-least-squares.lisp> +;; Time-stamp: <2008-03-09 19:30:55EDT nonlinear-least-squares.lisp> ;; $Id$ (in-package :gsl) @@ -383,9 +383,9 @@ exponential-residual-derivative exponential-residual-fdf) (defun solve-nonlinear-least-squares-example () - (letm ((init (vector-double #(1.0d0 0.0d0 0.0d0))) + (letm ((init (vector-double-float #(1.0d0 0.0d0 0.0d0))) (covariance - (matrix-double *number-of-parameters* *number-of-parameters*)) + (matrix-double-float *number-of-parameters* *number-of-parameters*)) (fit (nonlinear-fdffit *levenberg-marquardt* *number-of-observations* diff --git a/solve-minimize-fit/roots-multi.lisp b/solve-minimize-fit/roots-multi.lisp index 58b3b5226cacd05ecf4ea768e4d0af40f44f662b..0c59a5b9f1ae136b6a719781b0b658c8ce1ac2a2 100644 --- a/solve-minimize-fit/roots-multi.lisp +++ b/solve-minimize-fit/roots-multi.lisp @@ -1,6 +1,6 @@ ;;; Multivariate roots. ;;; Liam Healy 2008-01-12 12:49:08 -;;; Time-stamp: <2008-02-23 18:49:17EST roots-multi.lisp> +;;; Time-stamp: <2008-03-09 19:29:20EDT roots-multi.lisp> ;;; $Id$ (in-package :gsl) @@ -406,9 +406,6 @@ (defparameter *rosenbrock-a* 1.0d0) (defparameter *rosenbrock-b* 10.0d0) -(defparameter *gsl-vector* - (make-instance 'gsl-vector-double :pointer nil :storage-size nil)) - #| ;;; One alternative way of writing the function, not recommended. (defun rosenbrock (argument return) @@ -432,7 +429,7 @@ (defun roots-multi-example () "Solving Rosenbrock, the example given in Sec. 34.8 of the GSL manual." (let ((max-iter 1000)) - (letm ((vect (vector-double #(-10.0d0 -5.0d0)))) + (letm ((vect (vector-double-float #(-10.0d0 -5.0d0)))) (letm ((solver (mfsolver *hybrid-scaled* rosenbrock vect))) (let ((fnval (mfsolver-f solver)) (argval (mfsolver-root solver))) @@ -484,7 +481,7 @@ (maref fnval 0) (maref fnval 1)))) (let ((max-iter 1000)) - (letm ((vect (vector-double #(-10.0d0 -5.0d0)))) + (letm ((vect (vector-double-float #(-10.0d0 -5.0d0)))) (letm ((solver (mfdfsolver *gnewton-mfdfsolver* rosenbrock-f vect))) (let ((fnval (mfdfsolver-f solver)) diff --git a/sorting.lisp b/sorting.lisp index a8a1f2c000b218788b7b62477e775c5c94c2e653..c19830a975a9f47e1cd02c50ff3064c634d9df37 100644 --- a/sorting.lisp +++ b/sorting.lisp @@ -1,6 +1,6 @@ ;; Sorting ;; Liam Healy, Fri Apr 14 2006 - 20:20 -;; Time-stamp: <2008-02-17 10:08:41EST sorting.lisp> +;; Time-stamp: <2008-03-09 21:42:24EDT sorting.lisp> ;; $Id$ (in-package :gsl) @@ -59,7 +59,7 @@ (:documentation ; FDL "Sort the elements of the vector into ascending numerical order.")) -(defmfun-vdsf sort-vector ((vector gsl-vector)) +(defmfun-vdsf sort-vector ((vector vector)) "gsl_sort_vector" (((pointer vector) gsl-vector-c)) :c-return :void) @@ -74,7 +74,7 @@ in v and the last element of p gives the index of the greatest element in v. The vector v is not changed.")) -(defmfun-vdsf sort-vector-index (permutation (vector gsl-vector)) +(defmfun-vdsf sort-vector-index (permutation (vector vector)) "gsl_sort_vector_index" (((pointer permutation) gsl-permutation-c) ((pointer vector) gsl-vector-c))) @@ -85,7 +85,7 @@ "Find the smallest elements of the vector v and put them into dest, which must be shorter than v.")) -(defmfun-vdsf sort-vector-smallest (dest (v gsl-vector)) +(defmfun-vdsf sort-vector-smallest (dest (v vector)) "gsl_sort_vector_smallest" (((gsl-array dest) :pointer) ((dim0 dest) size) ((pointer v) gsl-vector-c)) @@ -101,7 +101,7 @@ in the array p.")) (defmfun-vdsf sort-vector-smallest-index - ((p gsl-vector-fixnum) (v gsl-vector)) + ((p vector-fixnum) (v vector)) "gsl_sort_vector_smallest_index" (((gsl-array p) :pointer) ((dim0 p) size) ((pointer v) gsl-vector-c)) @@ -114,7 +114,7 @@ "Find the largest elements of the vector and put them into dest, which must be shorter than the vector.")) -(defmfun-vdsf sort-vector-largest (dest (v gsl-vector)) +(defmfun-vdsf sort-vector-largest (dest (v vector)) "gsl_sort_vector_largest" (((gsl-array dest) :pointer) ((dim0 dest) size) ((pointer v) gsl-vector-c)) @@ -130,7 +130,7 @@ in the array p.")) (defmfun-vdsf sort-vector-largest-index - ((p gsl-vector-fixnum) (v gsl-vector)) + ((p vector-fixnum) (v vector)) "gsl_sort_vector_largest_index" (((gsl-array p) :pointer) ((dim0 p) size) ((pointer v) gsl-vector-c)) @@ -143,26 +143,26 @@ #| (make-tests sorting - (letm ((vec (vector-double #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) + (letm ((vec (vector-double-float #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) (sort-vector vec) (data vec)) (letm ((perm (permutation 5)) - (vec (vector-double #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) + (vec (vector-double-float #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) (sort-vector-index perm vec) (data perm)) - (letm ((vec (vector-double #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) - (smallest (vector-double 3))) + (letm ((vec (vector-double-float #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) + (smallest (vector-double-float 3))) (sort-vector-smallest smallest vec) (data smallest)) - (letm ((vec (vector-double #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) + (letm ((vec (vector-double-float #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) (smallest (vector-fixnum 3))) (sort-vector-smallest-index smallest vec) (data smallest)) - (letm ((vec (vector-double #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) - (largest (vector-double 3))) + (letm ((vec (vector-double-float #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) + (largest (vector-double-float 3))) (sort-vector-largest largest vec) (data largest)) - (letm ((vec (vector-double #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) + (letm ((vec (vector-double-float #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) (largest (vector-fixnum 3))) (sort-vector-largest-index largest vec) (data largest))) @@ -172,26 +172,26 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(-3.21d0 -2.0d0 1.0d0 7.1d0 12.8d0)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) (SORT-VECTOR VEC) (DATA VEC)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(3 1 4 0 2)) (MULTIPLE-VALUE-LIST (LETM ((PERM (PERMUTATION 5)) - (VEC (VECTOR-DOUBLE #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) + (VEC (VECTOR-DOUBLE-FLOAT #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0)))) (SORT-VECTOR-INDEX PERM VEC) (DATA PERM)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(-3.21d0 -2.0d0 1.0d0)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) - (SMALLEST (VECTOR-DOUBLE 3))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) + (SMALLEST (VECTOR-DOUBLE-FLOAT 3))) (SORT-VECTOR-SMALLEST SMALLEST VEC) (DATA SMALLEST)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(3 1 4)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) (SMALLEST (VECTOR-FIXNUM 3))) (SORT-VECTOR-SMALLEST-INDEX SMALLEST VEC) @@ -199,13 +199,13 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(12.8d0 7.1d0 1.0d0)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) - (LARGEST (VECTOR-DOUBLE 3))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) + (LARGEST (VECTOR-DOUBLE-FLOAT 3))) (SORT-VECTOR-LARGEST LARGEST VEC) (DATA LARGEST)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(2 0 4)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(7.1d0 -2.0d0 12.8d0 -3.21d0 1.0d0))) (LARGEST (VECTOR-FIXNUM 3))) (SORT-VECTOR-LARGEST-INDEX LARGEST VEC) (DATA LARGEST))))) diff --git a/special-functions/bessel.lisp b/special-functions/bessel.lisp index 748f4aa8747aab5831411e4e37eef87084e3c38c..3d287f11d1aa35548a7621a811ab169b85b2f928 100644 --- a/special-functions/bessel.lisp +++ b/special-functions/bessel.lisp @@ -1,6 +1,6 @@ ;; Bessel functions ;; Liam Healy, Fri Mar 17 2006 - 18:42 -;; Time-stamp: <2008-02-16 19:16:11EST bessel.lisp> +;; Time-stamp: <2008-03-09 19:29:18EDT bessel.lisp> ;; $Id$ (in-package :gsl) @@ -462,61 +462,61 @@ (cylindrical-bessel-J0 4.0d0) (cylindrical-bessel-J1 4.0d0) (cylindrical-bessel-Jn 2 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (cylindrical-bessel-Jn-array 2.0d0 besarr 2) (data besarr)) (cylindrical-bessel-Y0 4.0d0) (cylindrical-bessel-Y1 4.0d0) (cylindrical-bessel-Yn 3 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (cylindrical-bessel-Yn-array 2.0d0 besarr 2) (data besarr)) (cylindrical-bessel-I0 4.0d0) (cylindrical-bessel-I1 4.0d0) (cylindrical-bessel-In 3 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (cylindrical-bessel-In-array 2.0d0 besarr 2) (data besarr)) (cylindrical-bessel-I0-scaled 4.0d0) (cylindrical-bessel-I1-scaled 4.0d0) (cylindrical-bessel-In-scaled 3 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (cylindrical-bessel-In-scaled-array 2.0d0 besarr 2) (data besarr)) (cylindrical-bessel-K0 4.0d0) (cylindrical-bessel-K1 4.0d0) (cylindrical-bessel-Kn 2 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (cylindrical-bessel-Kn-array 2.0d0 besarr 2) (data besarr)) (cylindrical-bessel-K0-scaled 4.0d0) (cylindrical-bessel-K1-scaled 4.0d0) (cylindrical-bessel-Kn-scaled 2 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (cylindrical-bessel-Kn-array 2.0d0 besarr 2) (data besarr)) (spherical-bessel-j0 4.0d0) (spherical-bessel-j1 4.0d0) (spherical-bessel-j2 4.0d0) (spherical-bessel-jl 3 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (spherical-bessel-jl-array 4.0d0 besarr) (data besarr)) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (spherical-bessel-jl-steed-array 4.0d0 besarr) (data besarr)) (spherical-bessel-y0 4.0d0) (spherical-bessel-y1 4.0d0) (spherical-bessel-y2 4.0d0) (spherical-bessel-yl 2 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (spherical-bessel-yl-array 4.0d0 besarr) (data besarr)) (spherical-bessel-i0-scaled 4.0d0) (spherical-bessel-i1-scaled 4.0d0) (spherical-bessel-i2-scaled 4.0d0) (spherical-bessel-il-scaled 3 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (spherical-bessel-il-scaled-array 4.0d0 besarr) (data besarr)) (spherical-bessel-k0-scaled 4.0d0) @@ -524,11 +524,11 @@ (spherical-bessel-k2-scaled 4.0d0) (spherical-bessel-kl-scaled 3 4.0d0) - (letm ((besarr (vector-double 4))) + (letm ((besarr (vector-double-float 4))) (spherical-bessel-kl-scaled-array 4.0d0 besarr) (data besarr)) (bessel-jnu 3.0d0 4.0d0) - (letm ((besarr (vector-double #(1.0d0 2.0d0 3.0d0)))) + (letm ((besarr (vector-double-float #(1.0d0 2.0d0 3.0d0)))) (spherical-Jnu-array 0.5d0 besarr) (data besarr)) (bessel-Ynu 3.0d0 4.0d0) @@ -558,7 +558,7 @@ #(0.35283402861563773d0 0.12894324947440206d0 0.033995719807568436d0 0.007039629755871686d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (CYLINDRICAL-BESSEL-JN-ARRAY 2.0d0 BESARR 2) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -575,7 +575,7 @@ #(-0.6174081041906827d0 -1.127783776840428d0 -2.7659432263306014d0 -9.935989128481978d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (CYLINDRICAL-BESSEL-YN-ARRAY 2.0d0 BESARR 2) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -592,7 +592,7 @@ #(0.6889484476987382d0 0.21273995923985267d0 0.05072856997918024d0 0.009825679323131702d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (CYLINDRICAL-BESSEL-IN-ARRAY 2.0d0 BESARR 2) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -612,7 +612,7 @@ #(0.09323903330473338d0 0.028791222639470898d0 0.006865365386320685d0 0.0013297610941881578d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (CYLINDRICAL-BESSEL-IN-SCALED-ARRAY 2.0d0 BESARR 2) (DATA BESARR)))) @@ -630,7 +630,7 @@ #(0.2537597545660558d0 0.6473853909486341d0 2.1959159274119586d0 9.431049100596468d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (CYLINDRICAL-BESSEL-KN-ARRAY 2.0d0 BESARR 2) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -650,7 +650,7 @@ #(0.2537597545660558d0 0.6473853909486341d0 2.1959159274119586d0 9.431049100596468d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (CYLINDRICAL-BESSEL-KN-ARRAY 2.0d0 BESARR 2) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -670,7 +670,7 @@ #(-0.18920062382698202d0 0.11611074925915743d0 0.2762836857713501d0 0.22924385795503022d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (SPHERICAL-BESSEL-JL-ARRAY 4.0d0 BESARR) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -678,7 +678,7 @@ #(-0.18920062382698208d0 0.11611074925915742d0 0.27628368577135015d0 0.22924385795503024d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (SPHERICAL-BESSEL-JL-STEED-ARRAY 4.0d0 BESARR) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -698,7 +698,7 @@ #(0.16341090521590299d0 0.2300533501309578d0 0.009129107382315343d0 -0.21864196590306362d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (SPHERICAL-BESSEL-YL-ARRAY 4.0d0 BESARR) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -722,7 +722,7 @@ #(0.12495806717151212d0 0.09380241603560971d0 0.05460625514480483d0 0.02554459710460367d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (SPHERICAL-BESSEL-IL-SCALED-ARRAY 4.0d0 BESARR) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -746,7 +746,7 @@ #(0.39269908169872414d0 0.4908738521234052d0 0.760854470791278d0 1.4419419406125027d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE 4))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT 4))) (SPHERICAL-BESSEL-KL-SCALED-ARRAY 4.0d0 BESARR) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -757,7 +757,7 @@ #(0.6713967071418024d0 0.5130161365618323d0 0.06500818287738516d0)) (MULTIPLE-VALUE-LIST - (LETM ((BESARR (VECTOR-DOUBLE #(1.0d0 2.0d0 3.0d0)))) + (LETM ((BESARR (VECTOR-DOUBLE-FLOAT #(1.0d0 2.0d0 3.0d0)))) (SPHERICAL-JNU-ARRAY 0.5d0 BESARR) (DATA BESARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL diff --git a/special-functions/coulomb.lisp b/special-functions/coulomb.lisp index d57f9c803e3cc4784494363d9c6accfecaffe5d8..2e7cbbc41a7c9ce0c36675a75cbcef6ee2269cab 100644 --- a/special-functions/coulomb.lisp +++ b/special-functions/coulomb.lisp @@ -1,6 +1,6 @@ ;; Coulumb functions ;; Liam Healy, Sat Mar 18 2006 - 23:23 -;; Time-stamp: <2008-02-17 18:33:52EST coulomb.lisp> +;; Time-stamp: <2008-03-09 19:29:18EDT coulomb.lisp> ;; $Id$ (in-package :gsl) @@ -132,17 +132,17 @@ (hydrogenicr-1 1.0d0 2.5d0) (hydrogenicr 3 1 1.0d0 2.5d0) (coulomb-wave-FG 0.0d0 1.0d0 2.0d0 0) - (letm ((arr (vector-double 3))) + (letm ((arr (vector-double-float 3))) (coulomb-wave-F-array 0.0d0 1.0d0 2.0d0 arr) (data arr)) (coulomb-wave-fg 1.0d0 2.0d0 2.5d0 1) - (letm ((Farr (vector-double 3)) (Garr (vector-double 3))) + (letm ((Farr (vector-double-float 3)) (Garr (vector-double-float 3))) (coulomb-wave-FG-array 1.5d0 1.0d0 1.0d0 Farr Garr) (append (coerce (data Farr) 'list) (coerce (data Garr) 'list))) - (letm ((arr (vector-double 3))) + (letm ((arr (vector-double-float 3))) (coulomb-wave-sphF-array 0.0d0 1.0d0 2.0d0 arr) (data arr)) (coulomb-cl 1.0d0 2.5d0) - (letm ((cl (vector-double 3))) + (letm ((cl (vector-double-float 3))) (coulomb-CL-array 0.0d0 1.0d0 cl) (data cl))) |# @@ -166,7 +166,7 @@ #(0.6617816138326813d0 0.3614128577450535d0 0.13267757609917497d0)) (MULTIPLE-VALUE-LIST - (LETM ((ARR (VECTOR-DOUBLE 3))) + (LETM ((ARR (VECTOR-DOUBLE-FLOAT 3))) (COULOMB-WAVE-F-ARRAY 0.0d0 1.0d0 2.0d0 ARR) (DATA ARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -184,7 +184,7 @@ 27.57457472159366d0 170.56037293106908d0)) (MULTIPLE-VALUE-LIST (LETM - ((FARR (VECTOR-DOUBLE 3)) (GARR (VECTOR-DOUBLE 3))) + ((FARR (VECTOR-DOUBLE-FLOAT 3)) (GARR (VECTOR-DOUBLE-FLOAT 3))) (COULOMB-WAVE-FG-ARRAY 1.5d0 1.0d0 1.0d0 FARR GARR) (APPEND (COERCE (DATA FARR) 'LIST) (COERCE (DATA GARR) 'LIST))))) @@ -193,7 +193,7 @@ #(0.33089080691634065d0 0.18070642887252675d0 0.06633878804958748d0)) (MULTIPLE-VALUE-LIST - (LETM ((ARR (VECTOR-DOUBLE 3))) + (LETM ((ARR (VECTOR-DOUBLE-FLOAT 3))) (COULOMB-WAVE-SPHF-ARRAY 0.0d0 1.0d0 2.0d0 ARR) (DATA ARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -204,6 +204,6 @@ #(0.10842251310207264d0 0.05111086283184191d0 0.011428736368066591d0)) (MULTIPLE-VALUE-LIST - (LETM ((CL (VECTOR-DOUBLE 3))) + (LETM ((CL (VECTOR-DOUBLE-FLOAT 3))) (COULOMB-CL-ARRAY 0.0d0 1.0d0 CL) (DATA CL))))) diff --git a/special-functions/gegenbauer.lisp b/special-functions/gegenbauer.lisp index 8e7f4f41ab01fafe5e920140d1a77bde3cec2fb3..aeab5776ee13d90df7fffe74ed69b1fda3bcb5f3 100644 --- a/special-functions/gegenbauer.lisp +++ b/special-functions/gegenbauer.lisp @@ -1,6 +1,6 @@ ;; Gegenbauer polynomials ;; Liam Healy, Fri Apr 28 2006 - 20:40 -;; Time-stamp: <2008-02-16 22:04:38EST gegenbauer.lisp> +;; Time-stamp: <2008-03-09 19:29:18EDT gegenbauer.lisp> ;; $Id$ (in-package :gsl) @@ -49,7 +49,7 @@ (gegenbauer-2 1.0d0 3.0d0) (gegenbauer-3 1.0d0 3.0d0) (gegenbauer 4 1.0d0 3.0d0) - (letm ((arr (vector-double 4))) + (letm ((arr (vector-double-float 4))) (gegenbauer-array 1.0d0 3.0d0 arr) (data arr))) |# @@ -69,5 +69,5 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(1.0d0 6.0d0 35.0d0 204.0d0)) (MULTIPLE-VALUE-LIST - (LETM ((ARR (VECTOR-DOUBLE 4))) + (LETM ((ARR (VECTOR-DOUBLE-FLOAT 4))) (GEGENBAUER-ARRAY 1.0d0 3.0d0 ARR) (DATA ARR))))) diff --git a/special-functions/legendre.lisp b/special-functions/legendre.lisp index a45551a411d408ceb370b0a27350c91f694d86e3..a6155b915d94203e2213b46dd934b5183f2b0c27 100644 --- a/special-functions/legendre.lisp +++ b/special-functions/legendre.lisp @@ -1,6 +1,6 @@ ;; Legendre functions ;; Liam Healy, Sat Apr 29 2006 - 19:16 -;; Time-stamp: <2008-02-16 22:30:23EST legendre.lisp> +;; Time-stamp: <2008-03-09 19:29:17EDT legendre.lisp> ;; $Id$ (in-package :gsl) @@ -259,26 +259,26 @@ (legendre-Pl -4 0.3d0) (legendre-Pl 4 3.0d0) (legendre-Pl 4 0.3d0) - (letm ((arr (vector-double 4))) + (letm ((arr (vector-double-float 4))) (legendre-Pl-array 0.5d0 arr) (data arr)) (legendre-Q0 3.3d0) (legendre-Q1 3.3d0) (legendre-Ql 2 3.3d0) (legendre-Plm 4 3 0.5d0) - (letm ((arr (vector-double 4))) + (letm ((arr (vector-double-float 4))) (legendre-Plm-array 2 0.5d0 arr) (data arr)) - (letm ((val (vector-double 4)) - (deriv (vector-double 4))) + (letm ((val (vector-double-float 4)) + (deriv (vector-double-float 4))) (legendre-Plm-deriv-array 2 0.5d0 val deriv) (data deriv)) (legendre-sphplm 1200 1100 0.3d0) - (letm ((arr (vector-double 4))) + (letm ((arr (vector-double-float 4))) (legendre-sphPlm-array 4 0.5d0 arr) (data arr)) - (letm ((val (vector-double 4)) - (deriv (vector-double 4))) + (letm ((val (vector-double-float 4)) + (deriv (vector-double-float 4))) (legendre-sphPlm-deriv-array 4 0.5d0 val deriv) (data deriv)) (legendre-conicalp-half 3.5d0 10.0d0) @@ -290,7 +290,7 @@ (legendre-h3d-0 1.0d0 0.5d0) (legendre-h3d-1 1.0d0 0.5d0) (legendre-h3d 4 1.0d0 0.5d0) - (letm ((arr (vector-double 4))) + (letm ((arr (vector-double-float 4))) (legendre-h3d-array 1.0d0 0.5d0 arr) (data arr))) |# @@ -316,7 +316,7 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(1.0d0 0.5d0 -0.125d0 -0.4375d0)) (MULTIPLE-VALUE-LIST - (LETM ((ARR (VECTOR-DOUBLE 4))) + (LETM ((ARR (VECTOR-DOUBLE-FLOAT 4))) (LEGENDRE-PL-ARRAY 0.5d0 ARR) (DATA ARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 0.3128529498822064d0 1.3893461931245028d-16) @@ -333,13 +333,13 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(2.25d0 5.625d0 4.21875d0 -4.921875d0)) (MULTIPLE-VALUE-LIST - (LETM ((ARR (VECTOR-DOUBLE 4))) + (LETM ((ARR (VECTOR-DOUBLE-FLOAT 4))) (LEGENDRE-PLM-ARRAY 2 0.5d0 ARR) (DATA ARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST #(-3.0d0 3.75d0 33.75d0 55.78125d0)) (MULTIPLE-VALUE-LIST (LETM - ((VAL (VECTOR-DOUBLE 4)) (DERIV (VECTOR-DOUBLE 4))) + ((VAL (VECTOR-DOUBLE-FLOAT 4)) (DERIV (VECTOR-DOUBLE-FLOAT 4))) (LEGENDRE-PLM-DERIV-ARRAY 2 0.5d0 VAL DERIV) (DATA DERIV)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -351,7 +351,7 @@ #(0.24892463950030283d0 0.4127948151484927d0 0.35120655562190445d0 0.051599351893561574d0)) (MULTIPLE-VALUE-LIST - (LETM ((ARR (VECTOR-DOUBLE 4))) + (LETM ((ARR (VECTOR-DOUBLE-FLOAT 4))) (LEGENDRE-SPHPLM-ARRAY 4 0.5d0 ARR) (DATA ARR)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -360,7 +360,7 @@ 1.2710332489173686d0 2.648766730536161d0)) (MULTIPLE-VALUE-LIST (LETM - ((VAL (VECTOR-DOUBLE 4)) (DERIV (VECTOR-DOUBLE 4))) + ((VAL (VECTOR-DOUBLE-FLOAT 4)) (DERIV (VECTOR-DOUBLE-FLOAT 4))) (LEGENDRE-SPHPLM-DERIV-ARRAY 4 0.5d0 VAL DERIV) (DATA DERIV)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL @@ -402,6 +402,6 @@ #(0.9200342692589379d0 0.21694026450392115d0 0.04795066048830776d0 0.010663769096144337d0)) (MULTIPLE-VALUE-LIST - (LETM ((ARR (VECTOR-DOUBLE 4))) + (LETM ((ARR (VECTOR-DOUBLE-FLOAT 4))) (LEGENDRE-H3D-ARRAY 1.0d0 0.5d0 ARR) (DATA ARR))))) diff --git a/statistics/absolute-deviation.lisp b/statistics/absolute-deviation.lisp index b6b185e93ac96af56ea36f9a551b24b4f8e69720..9401a9a9777e334fd54981d30e3680d7dbf6f21c 100644 --- a/statistics/absolute-deviation.lisp +++ b/statistics/absolute-deviation.lisp @@ -1,6 +1,6 @@ ;; Absolute deviation ;; Liam Healy, Sun Dec 31 2006 - 13:19 -;; Time-stamp: <2008-02-17 16:39:38EST absolute-deviation.lisp> +;; Time-stamp: <2008-03-09 19:21:48EDT absolute-deviation.lisp> ;; $Id$ (in-package :gsl) @@ -80,8 +80,8 @@ #| (make-tests absolute-deviation - (letm ((vec (vector-double #(-3.21d0 1.0d0 12.8d0))) - (weights (vector-double #(3.0d0 1.0d0 2.0d0)))) + (letm ((vec (vector-double-float #(-3.21d0 1.0d0 12.8d0))) + (weights (vector-double-float #(3.0d0 1.0d0 2.0d0)))) (let ((mean (mean vec))) (list (absolute-deviation vec) @@ -93,8 +93,8 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST (LIST 6.18d0 6.647777777777779d0 6.18d0)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(-3.21d0 1.0d0 12.8d0))) - (WEIGHTS (VECTOR-DOUBLE #(3.0d0 1.0d0 2.0d0)))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(-3.21d0 1.0d0 12.8d0))) + (WEIGHTS (VECTOR-DOUBLE-FLOAT #(3.0d0 1.0d0 2.0d0)))) (LET ((MEAN (MEAN VEC))) (LIST (ABSOLUTE-DEVIATION VEC) (WEIGHTED-ABSOLUTE-DEVIATION VEC WEIGHTS) diff --git a/statistics/autocorrelation.lisp b/statistics/autocorrelation.lisp index a799def32e6cfa9d5f73572847d855013fa28e6a..e65092bc4dd37da808597754d6acdbcf627753ef 100644 --- a/statistics/autocorrelation.lisp +++ b/statistics/autocorrelation.lisp @@ -1,6 +1,6 @@ ;; Autocorrelation ;; Liam Healy, Sun Dec 31 2006 - 13:19 -;; Time-stamp: <2008-02-17 18:29:36EST autocorrelation.lisp> +;; Time-stamp: <2008-03-09 19:21:48EDT autocorrelation.lisp> ;; $Id$ (in-package :gsl) @@ -36,7 +36,7 @@ #| (make-tests autocorrelation - (letm ((vec (vector-double #(-3.21d0 1.0d0 12.8d0)))) + (letm ((vec (vector-double-float #(-3.21d0 1.0d0 12.8d0)))) (let ((mean (mean vec))) (list (autocorrelation vec) @@ -48,7 +48,7 @@ (LIST (LIST -0.04646366834251103d0 -0.04646366834251103d0)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(-3.21d0 1.0d0 12.8d0)))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(-3.21d0 1.0d0 12.8d0)))) (LET ((MEAN (MEAN VEC))) (LIST (AUTOCORRELATION VEC) (AUTOCORRELATION VEC MEAN))))))) diff --git a/statistics/covariance.lisp b/statistics/covariance.lisp index 5ccf26924b74c0c49056629d19e2dd7e63538a46..0f1b0131a6a294141c93208f534730f0bf3c2fbc 100644 --- a/statistics/covariance.lisp +++ b/statistics/covariance.lisp @@ -1,6 +1,6 @@ ;; Covariance ;; Liam Healy, Sun Dec 31 2006 - 13:19 -;; Time-stamp: <2008-02-17 16:48:17EST covariance.lisp> +;; Time-stamp: <2008-03-09 19:21:49EDT covariance.lisp> ;; $Id$ (in-package :gsl) @@ -38,8 +38,8 @@ #| (make-tests covariance - (letm ((vec1 (vector-double #(-3.21d0 1.0d0 12.8d0))) - (vec2 (vector-double #(1.15d0 -1.0d0 0.5d0)))) + (letm ((vec1 (vector-double-float #(-3.21d0 1.0d0 12.8d0))) + (vec2 (vector-double-float #(1.15d0 -1.0d0 0.5d0)))) (let ((mean1 (mean vec1)) (mean2 (mean vec2))) (list @@ -53,8 +53,8 @@ (LIST -0.2929999999999998d0 -0.2929999999999998d0)) (MULTIPLE-VALUE-LIST (LETM - ((VEC1 (VECTOR-DOUBLE #(-3.21d0 1.0d0 12.8d0))) - (VEC2 (VECTOR-DOUBLE #(1.15d0 -1.0d0 0.5d0)))) + ((VEC1 (VECTOR-DOUBLE-FLOAT #(-3.21d0 1.0d0 12.8d0))) + (VEC2 (VECTOR-DOUBLE-FLOAT #(1.15d0 -1.0d0 0.5d0)))) (LET ((MEAN1 (MEAN VEC1)) (MEAN2 (MEAN VEC2))) (LIST (COVARIANCE VEC1 VEC2) (COVARIANCE VEC1 VEC2 MEAN1 MEAN2))))))) diff --git a/statistics/higher-moments.lisp b/statistics/higher-moments.lisp index 5462df59c84864e5613563ad26e0345876ce1c6f..b57e52f05a38f2d833f93f72d9191c693743b963 100644 --- a/statistics/higher-moments.lisp +++ b/statistics/higher-moments.lisp @@ -1,6 +1,6 @@ ;; Skewness and kurtosis. ;; Liam Healy, Sun Dec 31 2006 - 14:20 -;; Time-stamp: <2008-02-17 16:42:59EST higher-moments.lisp> +;; Time-stamp: <2008-03-09 19:21:48EDT higher-moments.lisp> ;; $Id$ (in-package :gsl) @@ -120,7 +120,7 @@ #| (make-tests higher-moments - (letm ((vec (vector-double #(-3.21d0 1.0d0 12.8d0)))) + (letm ((vec (vector-double-float #(-3.21d0 1.0d0 12.8d0)))) (let* ((mean (mean vec)) (sd (standard-deviation vec mean))) (list @@ -136,7 +136,7 @@ (LIST 0.2765118983985497d0 0.2765118983985497d0 -2.333333333333333d0 -2.333333333333333d0)) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(-3.21d0 1.0d0 12.8d0)))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(-3.21d0 1.0d0 12.8d0)))) (LET* ((MEAN (MEAN VEC)) (SD (STANDARD-DEVIATION VEC MEAN))) (LIST (SKEWNESS VEC) (SKEWNESS VEC MEAN SD) diff --git a/statistics/mean-variance.lisp b/statistics/mean-variance.lisp index 1fba3427efaf8ba3d08ac8d3af7747c7bccf795f..0ce6e89706e81c658e9e258754976b11f9a992bb 100644 --- a/statistics/mean-variance.lisp +++ b/statistics/mean-variance.lisp @@ -1,6 +1,6 @@ ;; Mean, standard deviation, and variance ;; Liam Healy, Sat Dec 2 2006 - 22:15 -;; Time-stamp: <2008-02-17 16:35:48EST mean-variance.lisp> +;; Time-stamp: <2008-03-09 19:21:47EDT mean-variance.lisp> ;; $Id$ (in-package :gsl) @@ -10,46 +10,34 @@ (defmacro defmfun-stats (&rest args) "A defmfun for stats of double, single, and fixnum." - (defmfun-all - ;;'(double single fixnum long) - '(double single fixnum) - ;;'(:double :float :int :long-double) - '(:double :float :int) - "stats" - 'gsl-vector - args)) + (defmfun-all 'vector '(double-float single-float fixnum) args "stats")) (defmacro defmfun-stats-ds (&rest args) "A defmfun for stats of double and single." - (defmfun-all - '(double single) - '(:double :float) - "stats" - 'gsl-vector - args)) + (defmfun-all 'vector '(double-float single-float) args "stats")) ;;;;**************************************************************************** ;;;; Mean and weighted mean ;;;;**************************************************************************** -(defgeneric mean (gsl-vector) +(defgeneric mean (vector) (:documentation ; FDL "The arithmetic mean of the vector. The arithmetic mean, or sample mean, is denoted by \Hat\mu and defined as \Hat\mu = (1/N) \sum x_i. Returns a double-float.")) -(defmfun-stats mean ((vector gsl-vector)) +(defmfun-stats mean ((vector vector)) "gsl_stats_mean" (((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size)) :c-return :double) -(defgeneric weighted-mean (gsl-vector weights) +(defgeneric weighted-mean (vector weights) (:documentation ; FDL "The weighted mean of the dataset, using the set of weights The weighted mean is defined as \Hat\mu = (\sum w_i x_i) / (\sum w_i).")) -(defmfun-stats-ds weighted-mean ((vector gsl-vector) weights) +(defmfun-stats-ds weighted-mean ((vector vector) weights) "gsl_stats_wmean" (((gsl-array weights) :pointer) (1 :int) ((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size)) @@ -59,7 +47,7 @@ ;;;; Variance ;;;;**************************************************************************** -(defgeneric variance-nom (gsl-vector) +(defgeneric variance-nom (vector) (:documentation ; FDL "The estimated, or sample, variance of data. The estimated variance is denoted by \Hat\sigma^2 and is defined by @@ -74,19 +62,19 @@ you have already computed the mean then you can pass it directly to #'variance-m.")) -(defmfun-stats variance-nom ((vector gsl-vector)) +(defmfun-stats variance-nom ((vector vector)) "gsl_stats_variance" (((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size)) :index variance :export nil :c-return :double) -(defgeneric variance-m (gsl-vector mean) +(defgeneric variance-m (vector mean) (:documentation ; FDL "Compute the variance with the mean known to avoid its recomputation.")) -(defmfun-stats variance-m ((vector gsl-vector) mean) +(defmfun-stats variance-m ((vector vector) mean) "gsl_stats_variance_m" (((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size) (mean :double)) @@ -111,11 +99,11 @@ ;;;; Weighted variance ;;;;**************************************************************************** -(defgeneric weighted-variance-nom (gsl-vector weights) +(defgeneric weighted-variance-nom (vector weights) (:documentation ; FDL "Compute the weighted variance with the mean unknown.")) -(defmfun-stats-ds weighted-variance-nom ((vector gsl-vector) weights) +(defmfun-stats-ds weighted-variance-nom ((vector vector) weights) "gsl_stats_wvariance" (((gsl-array weights) :pointer) (1 :int) ((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size)) @@ -123,12 +111,12 @@ :export nil :c-return :double) -(defgeneric weighted-variance-m (gsl-vector weights mean) +(defgeneric weighted-variance-m (vector weights mean) (:documentation ; FDL "Compute the weighted variance with the mean known to avoid its recomputation.")) -(defmfun-stats-ds weighted-variance-m ((vector gsl-vector) weights mean) +(defmfun-stats-ds weighted-variance-m ((vector vector) weights mean) "gsl_stats_wvariance_m" (((gsl-array weights) :pointer) (1 :int) ((gsl-array vector) :pointer) (1 :int) @@ -152,23 +140,23 @@ ;;;; Standard deviation ;;;;**************************************************************************** -(defgeneric standard-deviation-nom (gsl-vector) +(defgeneric standard-deviation-nom (vector) (:documentation ; FDL "The standard deviation, square root of the variance.")) -(defmfun-stats standard-deviation-nom ((vector gsl-vector)) +(defmfun-stats standard-deviation-nom ((vector vector)) "gsl_stats_sd" (((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size)) :index standard-deviation :export nil :c-return :double) -(defgeneric standard-deviation-m (gsl-vector mean) +(defgeneric standard-deviation-m (vector mean) (:documentation ; FDL "The standard deviation with the mean known to avoid its recomputation.")) -(defmfun-stats standard-deviation-m ((vector gsl-vector) mean) +(defmfun-stats standard-deviation-m ((vector vector) mean) "gsl_stats_sd_m" (((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size) (mean :double)) @@ -184,10 +172,10 @@ ;;;; Weighted standard deviation ;;;;**************************************************************************** -(defgeneric weighted-standard-deviation-nom (gsl-vector weights)) +(defgeneric weighted-standard-deviation-nom (vector weights)) (defmfun-stats-ds weighted-standard-deviation-nom - ((vector gsl-vector) weights) + ((vector vector) weights) "gsl_stats_wsd" (((gsl-array weights) :pointer) (1 :int) ((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size)) @@ -195,10 +183,10 @@ :export nil :c-return :double) -(defgeneric weighted-standard-deviation-m (gsl-vector weights mean)) +(defgeneric weighted-standard-deviation-m (vector weights mean)) (defmfun-stats-ds weighted-standard-deviation-m - ((vector gsl-vector) weights mean) + ((vector vector) weights mean) "gsl_stats_wsd_m" (((gsl-array weights) :pointer) (1 :int) ((gsl-array vector) :pointer) (1 :int) @@ -215,7 +203,7 @@ ;;;; Variance with fixed mean ;;;;**************************************************************************** -(defgeneric variance-with-fixed-mean (gsl-vector mean) +(defgeneric variance-with-fixed-mean (vector mean) (:documentation ; FDL "An unbiased estimate of the variance of data when the population mean mean of the underlying @@ -224,20 +212,20 @@ \Hat\mu is replaced by the known population mean \mu, \Hat\sigma^2 = (1/N) \sum (x_i - \mu)^2.")) -(defmfun-stats variance-with-fixed-mean ((vector gsl-vector) mean) +(defmfun-stats variance-with-fixed-mean ((vector vector) mean) "gsl_stats_variance_with_fixed_mean" (((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size) (mean :double)) :c-return :double) -(defgeneric standard-deviation-with-fixed-mean (gsl-vector mean) +(defgeneric standard-deviation-with-fixed-mean (vector mean) (:documentation ; FDL "The standard deviation of data for a fixed population mean. The result is the square root of the corresponding variance function.")) (defmfun-stats standard-deviation-with-fixed-mean - ((vector gsl-vector) mean) + ((vector vector) mean) "gsl_stats_sd_with_fixed_mean" (((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size) (mean :double)) @@ -247,7 +235,7 @@ ;;;; Weighted variance with fixed mean ;;;;**************************************************************************** -(defgeneric weighted-variance-with-fixed-mean (gsl-vector weights mean) +(defgeneric weighted-variance-with-fixed-mean (vector weights mean) (:documentation ; FDL "An unbiased estimate of the variance of weighted dataset when the population mean of the underlying @@ -257,7 +245,7 @@ \Hat\sigma^2 = (\sum w_i (x_i - \mu)^2) / (\sum w_i).")) (defmfun-stats-ds weighted-variance-with-fixed-mean - ((vector gsl-vector) weights mean) + ((vector vector) weights mean) "gsl_stats_wvariance_with_fixed_mean" (((gsl-array weights) :pointer) (1 :int) ((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size) @@ -265,13 +253,13 @@ :c-return :double) (defgeneric weighted-standard-deviation-with-fixed-mean - (gsl-vector weights mean) + (vector weights mean) (:documentation ; FDL "The square root of the corresponding variance function #'weighted-variance-with-fixed-mean.")) (defmfun-stats-ds weighted-standard-deviation-with-fixed-mean - ((vector gsl-vector) weights mean) + ((vector vector) weights mean) "gsl_stats_wsd_with_fixed_mean" (((gsl-array weights) :pointer) (1 :int) ((gsl-array vector) :pointer) (1 :int) ((dim0 vector) size) @@ -284,8 +272,8 @@ #| (make-tests mean-variance - (letm ((vec (vector-double #(-3.21d0 1.0d0 12.8d0))) - (weights (vector-double #(3.0d0 1.0d0 2.0d0)))) + (letm ((vec (vector-double-float #(-3.21d0 1.0d0 12.8d0))) + (weights (vector-double-float #(3.0d0 1.0d0 2.0d0)))) (let ((mean (mean vec)) (wmean (weighted-mean vec weights))) (list @@ -320,8 +308,8 @@ 46.14136666666667d0 6.792743677385941d0)) (MULTIPLE-VALUE-LIST (LETM - ((VEC (VECTOR-DOUBLE #(-3.21d0 1.0d0 12.8d0))) - (WEIGHTS (VECTOR-DOUBLE #(3.0d0 1.0d0 2.0d0)))) + ((VEC (VECTOR-DOUBLE-FLOAT #(-3.21d0 1.0d0 12.8d0))) + (WEIGHTS (VECTOR-DOUBLE-FLOAT #(3.0d0 1.0d0 2.0d0)))) (LET ((MEAN (MEAN VEC)) (WMEAN (WEIGHTED-MEAN VEC WEIGHTS))) (LIST MEAN WMEAN (VARIANCE VEC) (VARIANCE VEC MEAN) diff --git a/statistics/median-percentile.lisp b/statistics/median-percentile.lisp index a9906b0f8de14d98c31effb62063d04a318dde35..55f533485831a9723c0686df12fd6edb4e504a6e 100644 --- a/statistics/median-percentile.lisp +++ b/statistics/median-percentile.lisp @@ -1,6 +1,6 @@ ;; Median and percentile ;; Liam Healy, Sun Dec 31 2006 - 13:19 -;; Time-stamp: <2008-02-17 16:50:24EST median-percentile.lisp> +;; Time-stamp: <2008-03-09 19:19:28EDT median-percentile.lisp> ;; $Id$ (in-package :gsl) @@ -30,7 +30,7 @@ (fraction :double)) :c-return :double :documentation ; FDL - "A quantile value of sorted-data, gsl-vector-double. The + "A quantile value of sorted-data, vector-double-float. The elements of the array must be in ascending numerical order. The quantile is determined by a fraction between 0 and 1. For example, to compute the value of the 75th percentile @@ -50,9 +50,10 @@ #| (make-tests median-percentile - (letm ((vec (vector-double #(-3.21d0 1.0d0 12.8d0)))) + (letm ((vec (vector-double-float #(-3.21d0 1.0d0 12.8d0)))) (median vec)) - (letm ((vec (vector-double #(-18.0d0 -12.0d0 -3.21d0 0.5d0 1.0d0 2.7d0 12.8d0)))) + (letm ((vec (vector-double-float + #(-18.0d0 -12.0d0 -3.21d0 0.5d0 1.0d0 2.7d0 12.8d0)))) (quantile vec 0.75d0))) |# @@ -60,11 +61,12 @@ (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 1.0d0) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(-3.21d0 1.0d0 12.8d0)))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT #(-3.21d0 1.0d0 12.8d0)))) (MEDIAN VEC)))) (LISP-UNIT::ASSERT-NUMERICAL-EQUAL (LIST 1.85d0) (MULTIPLE-VALUE-LIST - (LETM ((VEC (VECTOR-DOUBLE #(-18.0d0 -12.0d0 -3.21d0 0.5d0 1.0d0 2.7d0 12.8d0)))) + (LETM ((VEC (VECTOR-DOUBLE-FLOAT + #(-18.0d0 -12.0d0 -3.21d0 0.5d0 1.0d0 2.7d0 12.8d0)))) (QUANTILE VEC 0.75d0))))) diff --git a/wavelet.lisp b/wavelet.lisp index 195b19dc08f58e9a63e2a30d0fdb1ff3bf6a33ba..8fbe42038b07d4ba9ddabe6bbd5080f2aae35135 100644 --- a/wavelet.lisp +++ b/wavelet.lisp @@ -1,6 +1,6 @@ ;; Wavelet transforms. ;; Liam Healy, Mon Nov 26 2007 - 20:43 -;; Time-stamp: <2008-02-23 18:49:16EST wavelet.lisp> +;; Time-stamp: <2008-03-09 19:29:17EDT wavelet.lisp> ;; $Id$ (in-package :gsl) @@ -387,11 +387,11 @@ 256) using the 20 largest components of the wavelet transform, while setting the others to zero. See GSL manual Section 30.4." (letm ((n (length cl-data)) - (vector (vector-double cl-data)) + (vector (vector-double-float cl-data)) (wavelet (wavelet *daubechies-wavelet* 4)) (workspace (wavelet-workspace n))) (wavelet-transform-forward wavelet vector 1 workspace) - (letm ((absvector (vector-double n)) + (letm ((absvector (vector-double-float n)) (permutation (permutation n))) (dotimes (i n) (setf (maref absvector i) (abs (maref vector i)))) @@ -408,7 +408,7 @@ (defun wavelet-forward-example (&optional (cl-data *wavelet-sample*)) "Simpler example, with only a Daubechies wavelet forward transformation." (letm ((n (length cl-data)) - (vector (vector-double cl-data)) + (vector (vector-double-float cl-data)) (wavelet (wavelet *daubechies-wavelet* 4)) (workspace (wavelet-workspace n))) (wavelet-transform-forward wavelet vector 1 workspace)