Advertisement
Fhernd

transformada-rapida-fourier.py

Feb 13th, 2018
1,202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. import numpy as np
  2.  
  3.  
  4. primos = [2, 3, 7, 19, 23]
  5.  
  6. arreglo = np.array(primos)
  7.  
  8. # Transformada rápida de Fourier en un arreglo:
  9. print(np.fft.fft(arreglo))
  10.  
  11. print('')
  12.  
  13. # Creación de una matriz:
  14. matriz = np.array([[2, 3], [11, 23]])
  15.  
  16. # Transformada rápida de Fourier en una matriz:
  17. print(np.fft.fft2(matriz))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement