哪位大神可以告诉我下面的这段程序是干什么的啊?FFT_f1=fft2(f1)FFT_f1=abs(FFT_f1);tmax=FFT_f1(1,1);tmin=FFT_f1(1,1);for m=1:256for n=1:256if tmaxFFT_f1(m,n)tmin=FFT_f1(m,n);endendenddelta=tmax-tmin;for m=1:256for n=1:256FFT_f1(m,n)

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/04 06:16:48
哪位大神可以告诉我下面的这段程序是干什么的啊?FFT_f1=fft2(f1)FFT_f1=abs(FFT_f1);tmax=FFT_f1(1,1);tmin=FFT_f1(1,1);for m=1:256for n=1:256if tmaxFFT_f1(m,n)tmin=FFT_f1(m,n);endendenddelta=tmax-tmin;for m=1:256for n=1:256FFT_f1(m,n)

哪位大神可以告诉我下面的这段程序是干什么的啊?FFT_f1=fft2(f1)FFT_f1=abs(FFT_f1);tmax=FFT_f1(1,1);tmin=FFT_f1(1,1);for m=1:256for n=1:256if tmaxFFT_f1(m,n)tmin=FFT_f1(m,n);endendenddelta=tmax-tmin;for m=1:256for n=1:256FFT_f1(m,n)
哪位大神可以告诉我下面的这段程序是干什么的啊?
FFT_f1=fft2(f1)
FFT_f1=abs(FFT_f1);
tmax=FFT_f1(1,1);
tmin=FFT_f1(1,1);
for m=1:256
for n=1:256
if tmaxFFT_f1(m,n)
tmin=FFT_f1(m,n);
end
end
end
delta=tmax-tmin;
for m=1:256
for n=1:256
FFT_f1(m,n)=100*(FFT_f1(m,n)-tmin)/delta;
end
end
subplot(1,2,2);
imshow(FFT_f1);

哪位大神可以告诉我下面的这段程序是干什么的啊?FFT_f1=fft2(f1)FFT_f1=abs(FFT_f1);tmax=FFT_f1(1,1);tmin=FFT_f1(1,1);for m=1:256for n=1:256if tmaxFFT_f1(m,n)tmin=FFT_f1(m,n);endendenddelta=tmax-tmin;for m=1:256for n=1:256FFT_f1(m,n)
好像是产生波形的,