Finding an average of a signal using Fast Fourier Transform?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 7K views
stevenphy2
Messages
10
Reaction score
0
Hi all,
I have discrete data of a signal but I do not know the periods of the signal.
The signal is like a "beat" I guess, but not really sure.
I plan to use fft in MATLAB to get it's frequency spectrum and get the 0Hz value as the average of the signal.
Is this a bad idea?
Any other ways to do this?
Thanks.
 
on Phys.org
If you really want to know only average of the signal, you can simply add all the values of your signal (discrete data) and divide by total number of samples. Why to take fft? Anyway fft also does exactly the same thing to find value at 0Hz.
 
n.karthick said:
If you really want to know only average of the signal, you can simply add all the values of your signal (discrete data) and divide by total number of samples. Why to take fft? Anyway fft also does exactly the same thing to find value at 0Hz.

Adding them and divide it by the total number of samples will work only if my signal is of complete periods, right?
For example, if my full signal is a cosine wave, but I just have data that are half of the wavelength, it will not give me an average of zero.
I am wondering if there is something that can generate a "meaningful average" even if I do not have exactly complete wavelengths, say I have 5.5 wavelengths..?
 
stevenphy2 said:
Adding them and divide it by the total number of samples will work only if my signal is of complete periods, right?
For example, if my full signal is a cosine wave, but I just have data that are half of the wavelength, it will not give me an average of zero.

Yes you are right. I think, you should first find the fundamental period of your signal (in case you don't know). Once you know that, you can find average of your signal from the samples of one period.