How to normalise a FFT of a 3 variable function.

조회 수: 1 (최근 30일)
J K
J K 2019년 7월 11일
댓글: Rena Berman 2019년 9월 19일
I have this function:
input = exp(-((W-w_o).^2)/deltaW.^2).*exp(-(Kx.^2+Ky.^2)/(deltaK.^2)).*exp(1i.*sqrt((W/c).^2-(Kx.^2+Ky.^2)).*z(j));
this is then fourier transformed:
fourier = fftn(input)
I need to normalise it. Dividing it by length() is not giving good results. Could someone please help!

답변 (3개)

Matt J
Matt J 2019년 7월 11일
편집: Matt J 2019년 7월 11일
To normalize so that the continuous Fourier transform is approximated, multiply by the sampling intervals, dT1*dT2*dT3
  댓글 수: 7
Matt J
Matt J 2019년 7월 12일
편집: Matt J 2019년 7월 12일
Maybe also
F=F*sqrt(T1*T2*T3)/norm(F)
where T1,2,3 are the sampling distances.
J K
J K 2019년 7월 12일
Thank you so much!

댓글을 달려면 로그인하십시오.


Matt J
Matt J 2019년 7월 11일
편집: Matt J 2019년 7월 11일
To normalize so that Parseval's equation holds, divide by sqrt(numel(input)).

Matt J
Matt J 2019년 7월 11일
편집: Matt J 2019년 7월 11일
To normalize so as to obtain Discrete Fourier Series coefficients, divide by N=numel(input).

카테고리

Help CenterFile Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by