-----maxima-bounces at math.utexas.edu wrote: -----
>A?lot?of?slatec?routines?do?not?return?the?result?as?a?value,?but?change
>the?value?of?an?argument?to?the?function.
OK, I more or less understand how all this works; for example
(defun f ( )
(let ((x (make-array 3 :element-type 'double-float :initial-element
0.0d0)))
(h x)
x))
(defun g (z)
(setf (aref z 0) 42.0d0))
Maybe Clozure CL doesn't like something in f2cl-lib?
Barton