⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex6_3.m

📁 基于WEB与MATLAB编写的信号处理的源码,书名为"应用WEB和MATLAB的信号与系统基础.
💻 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 + -