The series of waves I input into the fft() function in R all have an RMS in the order of 10E-2, however the Fourier coefficient is massively different for all the waves (anywhere from 0.3-15).
I've looked at other fft functions such as the periodogram() and the coefficients remain the same.
Nothing fancy, just importing a series of y values into the fft function then taking the modulus.
result <- abs(fft(df))
An example of the input data and output transform is seen here:
Am I incorrect in assuming that there is a direct correlation between the RMS/Amplitude of the sin wave and the magnitude of the fourier coefficient?
Thanks in advance.