How to test if a time series is a white noise?
9 ビュー (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (2 件)
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) ...]
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?
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Hypothesis Tests についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!