arhabib
Civil/Environmental
- Oct 29, 2012
- 1
I'd like to compute the autocorrelation function of a time series from its power spectrum.
I am using MATLAB's pwelch function with a blackman window and 50% overlap.
How should I inverse the output from pwelch to get the autocorrelation?
sample code:
[px fx]=pwelch(x,blackman(512),256,512,100);
acfx=real(ifft(px*100));
The output from the ifft function has values other than 1.0 at t_lag=0!
I don't have an electrical background and little info about the math behind
this!
What kind of scaling does pwelch use?
Thanks in advance.
I am using MATLAB's pwelch function with a blackman window and 50% overlap.
How should I inverse the output from pwelch to get the autocorrelation?
sample code:
[px fx]=pwelch(x,blackman(512),256,512,100);
acfx=real(ifft(px*100));
The output from the ifft function has values other than 1.0 at t_lag=0!
I don't have an electrical background and little info about the math behind
this!
What kind of scaling does pwelch use?
Thanks in advance.