How to Calculate the CTFT of a Function Using MATLAB's FFT?

  • Context: MATLAB 
  • Thread starter Thread starter olen501
  • Start date Start date
  • Tags Tags
    Matlab
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 11K views
olen501
Messages
6
Reaction score
0
Does anyone know how to find the CTFT of a function using MatLab? I know MatLab has a built in function called fft that finds the fast Fourier transform, but I don't know how to use the fft to find the CTFT. Can anyone help me out?
 
Physics news on Phys.org
You can do something like:

x = cos(2*pi*f*t);
ft = fftshift(fft(x));

Then you must plot over the proper frequency range. This is most likely why you can't work with fft and get the right results.
 
When you say CTFT, you mean the Continous-Time Fourier Transform? The only way to do that on a computer is using symbolic math. You can't directly represent a continuous function inside the computer, and so you can't directly compute its Fourier Transform. So, supposing you have an expression for the function in question, you can feed that into the symbolic math toolbox, and have it give you an expression for the answer. I haven't used Matlab's symbolic math capabilities very much, so I can't comment further, but you might also just use The Integrator ( http://integrals.wolfram.com/index.jsp ). The downside to these approaches is that they tend not to be terribly good at simplifying the results, so you're apt to get a huge string of special functions that all end up cancelling each other out. Often, the process of simplifying the output of these symbolic math systems can be as laborious as simply doing the integral yourself in the first place. They are good resources if you're stuck or want to check your answers, though...
 
Yes, better to use a package designed with symbolic computations in mind...like Mathematica.