?? 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 + -