mit-scheme-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [MIT-Scheme-users] ERROR: Wrong number of arguments to #<procedure .


From: Simon Huskier
Subject: Re: [MIT-Scheme-users] ERROR: Wrong number of arguments to #<procedure ......
Date: Thu, 12 Jul 2012 09:39:31 +0800

 
   (define (eps-func p)
     (let* ((lattice->cartesian p)
       ...

You probably want to change this to

(define (eps-func p)
  (let* ((p (lattice->cartesian p))
    ...

This is really make sense to me! Now p is the cartesian coordinate, and then we can make values for x, y, and z. And it is also reasonable for the LET statement.

I will try it and see the results, but it takes a long time to run the program.

Thank you very much, Campbell.

Regards,

Simon

reply via email to

[Prev in Thread] Current Thread [Next in Thread]