mathematica能绘制自定义函数曲线吗?

问题描述:

mathematica能绘制自定义函数曲线吗?
我想绘制sin(x)的泰勒展开,
Remove[f]f[x_] := Series[Sin[x],{x,0,9}]Plot[f[x],{x,-2,2}],总报错是为什么呀?

改成下面这个样子就行了
f[x_] = Normal[Series[Sin[x],{x,0,9}]];
Plot[f[x],{x,-2,2}]