필터 지우기
필터 지우기

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

조회 수: 19 (최근 30일)
silicon
silicon 2013년 10월 6일
답변: Youssef Khmou 2013년 10월 6일
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

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 10월 6일
편집: Azzi Abdelmalek 2013년 10월 6일
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
silicon
silicon 2013년 10월 6일
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) ...]

댓글을 달려면 로그인하십시오.


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

카테고리

Help CenterFile Exchange에서 Hypothesis Tests에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by