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

📄 ex3024.m

📁 the file contain many matlab signal source code and many example .
💻 M
字号:
figure(1)
n=0:10;x=10*(0.8).^n;
[xec,xoc]=circevod(x);
subplot(211)
stem(n,xec);
axis([-0.5,10.5,-1,11])
subplot(212)
stem(n,xoc);
axis([-0.5,10.5,-4,4])
%
figure(2)
X=dft(x,11);Xec=dft(xec,11);Xoc=dft(xoc,11);
subplot(221)
stem(n,real(X));
axis([-0.5,10.5,-5,50])
subplot(222)
stem(n,imag(X));
axis([-0.5,10.5,-20,20])
subplot(223)
stem(n,real(Xec));
axis([-0.5,10.5,-5,50])
subplot(224)
stem(n,imag(Xoc));
axis([-0.5,10.5,-20,20])

⌨️ 快捷键说明

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