我正在尝试在 Mathematica 中绘制缓和函数的导数。它可以区分函数,并且可以使用 绘制函数%
,但我希望能够通过将导数分配为函数来绘制f[t_]
,然后Plot[ f[t] , {t,-1,1} ]
。
我不确定如何解决出现的错误。
Mathematica 代码是:
Clear[moll, f]
moll[x_] :=
Piecewise[ { {E^(-1/(1 - x^2)), -1 < x < 1} , {0,x <= -1 || x >= 1} } ]; (* Standard mollifier *)
f[t_] := D[ moll[t] , t]
f[t]
Plot[%, {t, -1, 1}] (* this line works *)
Plot[f[t], {t, -1, 1}] (* this line comes up with an error *)