필터 지우기
필터 지우기

How to find a fourier inverse transform using MATLAB Program

조회 수: 3 (최근 30일)
Ramann Mantha
Ramann Mantha 2013년 12월 8일
편집: Wayne King 2013년 12월 8일
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 !

채택된 답변

Wayne King
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개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by