Fourier Transform e^(-t)

조회 수: 13 (최근 30일)
himesh
himesh 2015년 4월 9일
답변: hategekimana shadrack 2021년 12월 14일
Hi. Why in MATLAB, why do we have to add a Heaviside function when doing Fourier transforms? For example when doing a Fourier transform of something simple, e.g. e^(-t), I get an error.
.
%%Error code
syms x w X
f = exp(-x)
X=fourier(f, x, w)
ezplot(X)
.
To fix this I need to write f = exp(-x)*heaviside(x);
Why is this?

답변 (3개)

Torsten
Torsten 2015년 4월 10일
Because your f is not integrable over IR, but only over IR+.
Or what is integral_{t=-oo}^{t=0} exp(-t) dt ?
Best wishes
Torsten.
  댓글 수: 3
Torsten
Torsten 2015년 4월 10일
I mean that
integral_{t=-oo}^{t=00} exp(-t) dt
does not exist, but only
integral_{t=0}^{t=oo} exp(-t) dt.
For the Fourier transform to exist, it would be necessary that
integral_{t=-oo}^{t=00} exp(-t) dt < oo
which is not the case.
Best wishes
Torsten.
himesh
himesh 2015년 4월 11일
Thanks. I also have one last question and that is when plotting these, I have to write
ezplot(abs(X))
Why are there errors when I get rid of the abs() in the ezplot statement?
Many thanks

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


sarath sai krishna babu gunupudi
Display the expression after computing Fourier Transform of u(t).
Save u(t) function in variable x and Fourier transform in variable xf.

hategekimana shadrack
hategekimana shadrack 2021년 12월 14일
Use matlab to calculate the Fourier series of the following periodic signals.
a. Draw the Amplitude spectrum of signal.

카테고리

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