<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Hi,<br>I'm trying to figure out how to solve a double-float undefined error for the mapcar statement in Fernando's moog.lisp instrument in sbcl, emacs, slime, clm.<br><br>Should I try to define the double-float type in moog.lisp or is it something I need to be doing from sbcl, or clm?<br><br><br>(defparameter moog-gaincoeffs<br>&nbsp;&nbsp;&nbsp; '(0.999969 0.990082 0.980347 0.970764 0.961304 0.951996 0.94281 0.933777 0.924866 0.916077 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.90741 0.898865 0.890442 0.882141&nbsp; ... ))<br><br>(defparameter moog-gaintable<br>&nbsp;&nbsp;&nbsp; (make-double-float-array (length moog-gaincoeffs)&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; :initial-contents (mapcar #'double-float moog-gaincoeffs)))<br><br><br>                                               </div></body>
</html>