0

fourier(series,k) returns a matrix containing terms from a Fourier series( cos and sin), up to order K(parameter). How to code a similar function in python?

lovetl2002
  • 910
  • 9
  • 23

1 Answers1

1

I can think of 2 options for fast fourier transforms in python:

scipy FFT

numpy FFT

you can also refer to this post

chacoff
  • 44
  • 3