matlab离散时间傅里叶变换作图问题

2024-12-19 18:06:42
推荐回答(1个)
回答1:

y=fft(x,number);%number是x的长度
n=0:length(y)-1;
f=fs*n/length(y);%fs是x的采样频率
plot(f,abs(y));