?? ex_1.m
字號:
clear all;
A=[1 2 3 4 5];
B=[6 7 8 9 10];
C=A+B
D=A-B
E=A.*B
F=A./B
G=A.^B
figure(1)
subplot(2,2,1),stem(A),title('A')
subplot(2,2,2),stem(B),title('B')
subplot(2,2,3),stem(C),title('C')
subplot(2,2,4),stem(D),title('D')
figure(2)
subplot(3,1,1),stem(E),title('E')
subplot(3,1,2),stem(F),title('F')
subplot(3,1,3),stem(G),title('G')
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -