How to calculate inverse fourier transform of a sinc wave?

조회 수: 1 (최근 30일)
Florea George
Florea George 2019년 1월 8일
댓글: nanren888 2019년 1월 9일
the sinc wave signal form is this X(ω)= 2*sinc(ω*T/pi);
  댓글 수: 1
nanren888
nanren888 2019년 1월 9일
Google
inverse fourier transform of a sinc
Numerically?
Sample it, that is generate samples at equally-spaced T values, for a given omega.
omega = 1.0
tMax = 100.0;
tt = linspace(-tMax,tMax,1024).';
s = 2*sinc(omega*tt/pi);fig.png
sif = ifft(s);
plot(abs(sif));
grid('on');
You might want to try for different tMax values

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Fourier and Cosine Transforms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by