![fig.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/200421/fig.png)
How to calculate inverse fourier transform of a sinc wave?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
the sinc wave signal form is this X(ω)= 2*sinc(ω*T/pi);
1 comentario
nanren888
el 9 de En. de 2019
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](https://www.mathworks.com/matlabcentral/answers/uploaded_files/200421/fig.png)
![fig.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/200421/fig.png)
sif = ifft(s);
plot(abs(sif));
grid('on');
You might want to try for different tMax values
Respuestas (0)
Ver también
Categorías
Más información sobre Discrete Fourier and Cosine Transforms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!