?? 代碼12-17.txt
字號:
ax1 = subplot(2,2,1);
plot(1:10);
h = zoom; % 正常縮放。
ax2 = subplot(2,2,2);
plot(rand(3));
setAllowAxesZoom(h,ax2,false); % 不能縮放。
ax3 = subplot(2,2,3);
plot(peaks);
setAxesZoomMotion(h,ax3,'horizontal'); % 水平方向縮放。
ax4 = subplot(2,2,4);
contour(peaks);
setAxesZoomMotion(h,ax4,'vertical'); % 垂直方向縮放。
%圖形窗口出現放大鏡。
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -