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

📄 am.asv

📁 模拟信号的调制代码
💻 ASV
字号:
t=0:0.02:10;
A=2;
x=sin(2*pi*t)+A;
subplot(2,2,1);
plot(x)
axis([0,10]);

X=fft(x);
subplot(2,2,2);
plot(abs(X))
axis([-10000,10000,0,3000]);

y=sin(10*pi*t);
z=x.*y;
U=fft(z);
subplot(2,2,3);
plot(t,z)
subplot(2,2,4);
plot(abs(U))
axis([-10000,10000,0,3000])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -