matlab平稳性检验实例

%构建两个序列进行检测
t = (1:100)';
y1 = randn(100,1);                       %按照均匀分布生成的,所以是平稳的。;
y2 = randn(100,1) + .2*t;
plot(t,y1,t,y2);
adftest(y1)           
adftest(y2)


ans =

     1              %1代表平稳


ans =

     0

matlab平稳性检验实例_第1张图片

你可能感兴趣的:(matlab学习)