?? ex6_3.m
字號:
% Example 6.3
t=0:.01:5;
x=cos(pi*t);
spm=cos(10*pi*t+5*x);
sfm = cos(10*pi*t+2*pi*5/2/pi*sin(pi*t));
clf
subplot(311),plot(t,x);
xlabel('Time (sec)')
ylabel('x(t)')
subplot(312),plot(t,spm);
xlabel('Time (sec)')
ylabel('s(t) for PM')
subplot(313),plot(t,sfm);
xlabel('Time (sec)')
ylabel('s(t) for FM')
subplot(111)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -