?? plot_2way.m
字號:
function y=plot_2way(x1,x2,len,t)
mm=150;
subplot(2,1,2);
plot((1:len)*t,x2(1:len));
axis([0 len*t -4 4]);
hold on
plot((1:len)*t,x2(1:len),'.','color','red');
hold off
xlabel('虛部信號');
subplot(2,1,1);
plot((1:len)*t,x1(1:len));
axis([0 len*t -4 4]);
hold on
plot((1:len)*t,x1(1:len),'.','color','red');
xlabel('實部信號');
hold off
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -