How to find a fourier inverse transform using MATLAB Program
1 次查看(过去 30 天)
显示 更早的评论
Hello, I need help in writing a MATLAB program to find the inverse fourier tansform as it involves integration from the limits 0 to infinity !
0 个评论
采纳的回答
Wayne King
2013-12-8
编辑:Wayne King
2013-12-8
If you have the symbolic toolbox use ifourier() and multiply your function by the Heaviside function to give you an integration for [0 \infty)
syms t v
ifourier(exp(-v)*heaviside(v),v)
Keep in mind the convention used here for the Fourier and inverse pair.
The Fourier transform is
X(\omega) = \int_{-\infty}^{\infty} x(t) e^{-i \omega t} dt
and the inverse is
x(t) = \dfrac{1}{2\pi} \int_{-\infty}^{\infty} X(\omega) e^{i\omega t} d\omega
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!