Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

scipy.fftfreq() in Python

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

With the help of scipy.fftfreq() method, we can compute the fast fourier transformation frequency and return the transformed array by using this method.

Syntax : scipy.fftfreq(n, freq)

Return : Return the transformed  array.

Example #1 :

In this example we can see that by using scipy.fftfreq() method, we are able to compute the fast fourier transformation frequency and return the transformed array.

Python3




# import scipy and numpy
import scipy
import numpy as np
  
# Using scipy.fftfreq() method
gfg = scipy.fft.fftfreq(5, 1.096)
  
print(gfg)


Output :

[ 0.          0.18248175  0.3649635  -0.3649635  -0.18248175]

Example #2 :

Python3




# import scipy and numpy
import scipy
import numpy as np
  
# Using scipy.fftfreq() method
gfg = scipy.fft.fftfreq(3, 2.4096)
  
print(gfg)


Output :

[ 0.          0.13833555 -0.13833555]

My Personal Notes arrow_drop_up
Last Updated : 29 Aug, 2020
Like Article
Save Article
Similar Reads
Related Tutorials