ERROR: Wrong number of arguments to #

2012-07-11 Thread Simon Huskier
Dear Scheme users: When I run the following piece of code, I encountered an error: *ERROR: Wrong number of arguments to #cartesian (x)> * function definition > (define (eps-func p) >(let* ((p (lattice->cartesian)) > (x (vector3-x p)) > (y (vector3-y p)) >

Re: ERROR: Wrong number of arguments to #

2012-07-11 Thread Simon Huskier
Thanks Noah. Thank you all of you! Jay Sulzberger suggest the following change, and it makes sense to me. * * > function definition > >> (define (eps-func p) >>(let* ((p (lattice->cartesian)) >> > Perhaps above should be * (let* ((p (lattice->cartesian p)) * Regards, Simon On Thu, Ju