examp3_2.m
来自「东北大学 薛定谔的高等应用数学问题MATLAB求解的源代码」· M 代码 · 共 6 行
M
6 行
syms x; limit((exp(x^3)-1)/(1-cos(sqrt(x-sin(x)))),x,0,'right')
x=-0.1:0.001:0.1; y=(exp(x.^3)-1)./(1-cos(sqrt(x-sin(x))));
plot(x,y,'-',[0],[12],'o')
syms x; limit((exp(x^3)-1)/(1-cos(sqrt(x-sin(x)))),x,0)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?