如何在MATLAB中进行正态分布检验?

2024-11-08 18:35:43
推荐回答(2个)
回答(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

(非正态分布)

回答(2):

可以用JB( Jarque-Bera)检验, 即 h=jbtest(x)

例:

>> x=normrnd(0,1,1,100);
>> jbtest(x)

ans =

0
(正态分布)

>> x = rand(1,100);
>> jbtest(x)

ans =

1
(非正态分布)