📄 subploting.m
字号:
function subploting()
clf;
clear all;
subplot(2,2,1);
plot(1:10);
title('plot(1:10)');
subplot(2,2,2);
x=0:.1:2*pi;
plot(x,sin(x));
title('plot(x,sin(x))');
subplot(2,2,3);
plot(x,exp(-x),'r');
title('plot(x,exp(-x)),"r"');
subplot(2,2,4);
plot(peaks);
title('plot(peaks)');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -