Subject: minimal maxima function def to use mfuncall?
From: Edwin Woollett
Date: Tue, 17 Apr 2012 16:35:02 -0700
What is the minimum amount of preparation one
must do in defining a maxima function using :=
to be able to use it with mfuncall?
---------------------------
(%i1) :lisp (mfuncall '$sin '1.570796)
0.9999999999999466
(%i1) f(x) := x^2$
(%i2) :lisp (mfuncall 'f '3)
((F SIMP) 3)
(%i2)
--------------------------
Ted Woollett