I'm wondering if anyone can help me better understand the fourier series by seeing the output of a fourier transform actually used as the coefficients
in the series of sine
and cosine
functions.
I have some function, I sample 4 times to get [0, 1, 0, 1], therefore N == 4
. How do I express this as a fourier series? Using numpy, the fft gives me...[ 2.+0.j, 0.+0.j, -2.+0.j, 0.+0.j]
Basically, I need to see the expansion of this, NOT in summation notation, just because otherwise I will just have a fear-induced cloudy mind. By expansion, I mean sin(something * x) + cos(something * x) +
...