lj21.m
来自「基于matlab的数字信号处理程序」· M 代码 · 共 8 行
M
8 行
n=0:1:15;
x=cos(0.48*pi*n)+cos(0.52*pi*n);
L=64;
y1=fft(x);
y2=fft(x,64);
subplot(1,2,1),plot(n/16,abs(y1));title('16点的幅频特性图');
subplot(1,2,2),plot(L/64,abs(y2));title('补零后的64点幅频图');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?