📄 08-33.txt
字号:
>> syms x
>> g = exp(x*sin(x))
>> g = exp(x*sin(x));
>> t = taylor(g,12,2);
>> xd = 1:0.05:3; yd = subs(g,x,xd);
>> ezplot(t, [1,3]); hold on;
>> plot(xd, yd, '-.')
>> title('Taylor approximation vs. actual function');
>> legend('Taylor','Function')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -