📄 2-5.m
字号:
subplot(211)
%分割窗口对象
Z = peaks;
plot(Z)
subplot(212)
x = -pi:.1:pi;
y = sin(x);
plot(x,y)
hold on
plot(x+1,y,'.')
%设置点型
hold off
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -