作业帮 > 综合 > 作业

matlab 傅里叶逆变换

来源:学生作业帮 编辑:百度作业网作业帮 分类:综合作业 时间:2024/08/09 01:11:52
matlab 傅里叶逆变换
load mtlb;
subplot(2,2,1),plot(mtlb)
x1=fft(mtlb);
y=abs(x1);
subplot(2,2,2),plot(y)
for n=0:4000
if y
matlab 傅里叶逆变换
t逆变换不行的,因为傅立叶变换值是复数,一旦取模,就回不来了,要想逆变换,变换的值不能取模,所以这样,不要取模,判断条件取模,就好