From: Eduardo O. <edu...@gm...> - 2022-11-21 23:51:14
|
Hi list, what is right & recommended way to write curried functions in Maxima? For example, in a first moment I though that this F : lambda([a], lambda([b], 10*a+b)); F(2)(3); would yield 23, but the result was 10*a+3... Or: is there a simple way to do backquoting in Maxima? What are your favorite ways to rewrite this - that is lisp-ish pseudocode - F : lambda([a], `lambda([b], 10*,a+b)); into real Maxima code? Thanks in advance! Eduardo Ochs http://angg.twu.net/eev-maxima.html |