Can we find the fourier transform of a function?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Seetha Rama Raju Sanapala
el 8 de Jun. de 2015
Comentada: Seetha Rama Raju Sanapala
el 8 de Jun. de 2015
In symbolic tool box, there is a function called fourier which is supposed to give the FT of a function. Example below works
syms x y
f = exp(-x^2);
fourier(f, x, y)
But I find that this does not work. why?
syms x y
f = exp(-x^4);
fourier(f, x, y)
How do you represent a rectangular pulse function in MATLAB so that I can get the FT of it?
rect(t) = 1 if t is between -0.5 and 0.5 inclusive and zero outside.
2 comentarios
Respuestas (1)
Walter Roberson
el 8 de Jun. de 2015
Rectangular pulse that is 1 between A and B is
Heaviside(x-A) - Heaviside(x-B)
0 comentarios
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!