📄 huitu.m
字号:
function huitu(tmax,t,y,step);
subplot(3,2,1);
plot(t,y(:,1));
subplot(3,2,2);
plot(t,y(:,2));
subplot(3,2,3);
plot(t,y(:,3));
subplot(3,2,4);
plot(t,y(:,4));
a=diff(y(:,3))/step;
subplot(3,2,5);
plot(0:step:tmax-step,a);
w=diff(y(:,4))/step;
subplot(3,2,6);
plot(0:step:tmax-step,w);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -