Is there an accepted way of determining the noise floor of a signal by looking at it in the frequency domain? Is it a matter of averaging all the bins, or median, or some more complex calculation like those described in the question below?
What's the best criterion for determining a frequency peak?
I want to determine the noise floor to set a threshold for determining whether or not my signal contains a given frequency.
rms(fft(x))/sqrt(n) = rms(x)examples here So you have to decide what your signal looks like in the frequency domain, remove it, measure the leftover values, and multiply by sqrt(n) to get the RMS noise floor, for instance. – endolith Feb 05 '13 at 16:03