a27.m
来自「the file contain many matlab signal sour」· M 代码 · 共 23 行
M
23 行
figure(1)
n=0:10;
x=10*(0.8).^n;
[xec,xoc]=circevod(x);
subplot(311)
stem(n,x)
subplot(312)
stem(n,xec);
subplot(313)
stem(n,xoc)
figure(2)
X=dft(x,11)
Xec=dft(xec,11)
Xoc=dft(xoc,11)
subplot(221)
stem(n,real(X))
subplot(222)
stem(n,imag(X))
subplot(223)
stem(n,real(Xec))
subplot(224)
stem(n,imag(Xoc))
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?