Borrar filtros
Borrar filtros

Fourier transform in continuous time

49 visualizaciones (últimos 30 días)
Kelly Howard
Kelly Howard el 27 de En. de 2016
Editada: Santiago Vélez Jr. Casallas el 14 de En. de 2022
hi guys, i trying out an example from the textbook 'DSP using matlab'.
for t=0:100
a=-100:1
x=exp(a*t)
answer= fft(x)
end
is there any mistake in my code as i could not get the right answer using matlab

Respuestas (2)

Star Strider
Star Strider el 27 de En. de 2016
For continuous time signals, you have to use the Symbolic Math Toolbox:
syms a t w
FT = int(exp(a*t) * exp(j*w*t), t, 0, Inf)
FT =
limit(exp(t*a)*exp(t*w*1i), t, Inf)/(a + w*1i) - 1/(a + w*1i)
If ‘a’ is negative, this is much more tractable.
  3 comentarios
Walter Roberson
Walter Roberson el 27 de En. de 2016
If you were to add the assumption a<0 then it might become more readable.
syms a t w
assume(a<0);
FT = int(exp(a*t) * exp(j*w*t), t, 0, Inf)
Kelly Howard
Kelly Howard el 1 de Feb. de 2016
let say i use a=log(0.3), i can't get any value out of it

Iniciar sesión para comentar.


Santiago Vélez Jr. Casallas
Santiago Vélez Jr. Casallas el 14 de En. de 2022
Editada: Santiago Vélez Jr. Casallas el 14 de En. de 2022
The most direct way is using fourier(f), where "f" is your continuous signal written in symbolic type (sym). You mut first declare the symbols for the time and frequency with "syms", and then apply:
An additional tip:
--> for me this function doesn't work with euler exponential functions, unless you declare them properly. For example, with Laplace functions:
As you can see it doesn't give error,but the result is the very expresion I wrote.
This is because the euler function has especial treatments in fourier tranforms or the integral will not converge. In this example, the constant that acompanies variable "t" (in this case 5), and "t" itself, must be positive, you can find it in Laplace's theory. So you must specify this, or the integral that matlab does will just not converge:
I did it with abs(), but it can b done with assume() funtion as well,for example:
assume([t],'positive');
You can know further about fourier(t) function in here: https://la.mathworks.com/help/symbolic/sym.fourier.html

Community Treasure Hunt

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

Start Hunting!

Translated by