?? graphics.m
字號:
%圖形處理
t=0:0.05:5;
x=sin(t*2);
plot(t,x)
y=cos(5*t);
hold on
plot(t,y,'--r*')
hold off
subplot(2,2,1)
plot(t,x)
subplot(2,2,2)
plot(t,t.*t)
subplot(2,2,3)
plot(t,y)
subplot(2,2,4)
plot(t,(t-2).*(t-2))
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -