注册 登录
编程论坛 Matlab

问一个很简单的问题,概率分布图怎么表示

prince00840 发布于 2008-11-11 15:04, 3783 次点击
我得出一些数据,怎么看它们是属于什么分布
怎么画出概率分布图?
据个例子就行了
谢谢拉
2 回复
#2
hitzhang2008-11-11 18:50
>> x=randn(300,1);
>> dfittool(x)
只有本站会员才能查看附件,请 登录


%Click "New Fit..." and "Apply",then it returns
只有本站会员才能查看附件,请 登录


%The Results pane displays the mean and standard deviation of the normal distribution that best fits x, as shown in  follow
Distribution:    Normal
Log likelihood:  -400.751
Domain:          -Inf < y < Inf
Mean:            -0.0170083
Variance:        0.849699

Parameter  Estimate    Std. Err.
mu         -0.0170083  0.0532196
sigma        0.921791  0.0377264

Estimated covariance of parameter estimates:
       mu            sigma      
mu       0.00283233  5.16186e-020
sigma  5.16186e-020    0.00142328

%Get help by typing "doc disttool" at the command line.
#3
prince008402008-11-13 10:25
觉着还行

谢谢斑竹啊
1