利用matlab进行区间估计

分类: Math_and_Matlab |
[muhat,sigmahat,muci,sigmaci] = normfit(data,alpha)
returns
100(1 - alpha)
% confidence intervals for the parameter estimates, where
alpha is
a value in the range [0 1] specifying
the width of the confidence intervals. By default, alpha is
0.05,
which corresponds to 95% confidence intervals.
disttool 可以查看相关的分布的概率密度函数图像等。
normplot 画出数据的正态分布函数图像,如果所画的图像为一条直线,则表示数据符合正态分布。
利用normfit进行相关参数的估计。
此外,利用histfit可以直接画出框图与分布曲线图形,可以改变颜色等,具体参见:
http://www.mathworks.cn/cn/help/stats/histfit.html
后一篇:matlab画图参数