不完全なヒストグラムにhistfitで確率密度正規分布を近似させたとき,そのmeanとσを知る方法はありますか?
5 views (last 30 days)
Show older comments
不完全なヒストグラムにhistfitで確率密度正規分布を近似させたとき,そのmeanとσを知る方法はありますか?
0 Comments
Accepted Answer
Atsushi Ueno
on 8 Jun 2021
>そのmeanとσを知る方法はありますか?
はいあります。histfit関数ではなくfitdist関数によってそれらのパラメータが得られます。
histfit は、fitdist を使用して分布をデータにあてはめます。fitdist を使用して、あてはめに使用されたパラメーターを取得します。
rng default; % For reproducibility
r = normrnd(10,1,100,1);
pd = fitdist(r,'Normal')
パラメーター推定の横にある区間は分布パラメーターの 95% 信頼区間です。
More Answers (0)
See Also
Categories
Find more on 半正規分布 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!