可以用JB( Jarque-Bera)检验, 即 h=jbtest(x)
例:
>> x=normrnd(0,1,1,100);
>> jbtest(x)
ans =
0
(正态分布)
>> x = rand(1,100);
>> jbtest(x)
ans =
1
(非正态分布)
可以用JB( Jarque-Bera)检验, 即 h=jbtest(x)
例:
>> x=normrnd(0,1,1,100);
>> jbtest(x)
ans =
0
(正态分布)
>> x = rand(1,100);
>> jbtest(x)
ans =
1
(非正态分布)