VOOZH about

URL: https://www.geeksforgeeks.org/matlab/fourier-transform-in-matlab/

⇱ Fourier transform in MATLAB - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Fourier transform in MATLAB

Last Updated : 30 May, 2021

Fourier Transform is a mathematical technique that helps to transform Time Domain function x(t) to Frequency Domain function X(ω). In this article, we will see how to find Fourier Transform in MATLAB.

The mathematical expression for Fourier transform is:

Using the above function one can generate a Fourier Transform of any expression. In MATLAB, the Fourier command returns the Fourier transform of a given function. Input can be provided to the Fourier function using 3 different syntaxes.

  • Fourier(x): In this method, x is the time domain function whereas the independent variable is determined by symvar and the transformation variable is w by default.
  • Fourier(x,transvar): Here, x is the time domain function whereas transvar is the transformation variable instead of w.
  • Fourier(x,indepvar,transvar): In this syntax, x is the time domain function whereas indepvar is the independent variable and transvar is the transformation variable instead of symvar and w respectively.

Now we find the Fourier Transform of  .

Example 1:

Output: 

👁 Image

Let's take another example to find the Fourier Transform of a*abs(t).

Example 2:

Output: 

👁 Image
Comment