Azzera filtri
Azzera filtri

How to test if a time series is a white noise?

19 visualizzazioni (ultimi 30 giorni)
silicon
silicon il 6 Ott 2013
Risposto: Youssef Khmou il 6 Ott 2013
How to test if a time series x(t) (t=1,2...n) is a white noise?
x(t) does not have to be Gaussian. kstest() will not work. autocorr(X) only test auto-correlation; it does not show the mean at each t is zero.
Thanks

Risposte (2)

Azzi Abdelmalek
Azzi Abdelmalek il 6 Ott 2013
Modificato: Azzi Abdelmalek il 6 Ott 2013
At each time t you have one value, the mean of this value is not supposed to be 0. You should calculate the mean of [x(1) x(2) ...]
  1 Commento
silicon
silicon il 6 Ott 2013
According to the definition of white noise, X(t) for each t is a a random variable with 0 mean. So we have n random variables here. We should not calculate mean of [x(1) x(2) ...]

Accedi per commentare.


Youssef  Khmou
Youssef Khmou il 6 Ott 2013
white noise i.e flat power spectral density .
% time serie X
F=abs(fft(X));
plot(F(1:end/2)); % shape?

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by