标签: maple
如果我想将一个函数作为用户输入,我该怎么做?
我试图输入$ x ^ 2 $。
s0:=readstat("Enter function:");
s:=x->s0;
s(2);
但这只会返回$ x ^ 2 $
答案 0 :(得分:0)
使用取消应用,如 s:= unapply(s0,x); 您不能在 readstat 输入中使用本地或正式变量。