不完全なヒストグラムにhistfitで確率密度正規分布を近似させたとき,そのmeanとσを知る方法はありますか?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
KO
el 8 de Jun. de 2021
Comentada: KO
el 10 de Jun. de 2021
不完全なヒストグラムにhistfitで確率密度正規分布を近似させたとき,そのmeanとσを知る方法はありますか?
0 comentarios
Respuesta aceptada
Atsushi Ueno
el 8 de Jun. de 2021
>そのmeanとσを知る方法はありますか?
はいあります。histfit関数ではなくfitdist関数によってそれらのパラメータが得られます。
histfit は、fitdist を使用して分布をデータにあてはめます。fitdist を使用して、あてはめに使用されたパラメーターを取得します。
rng default; % For reproducibility
r = normrnd(10,1,100,1);
pd = fitdist(r,'Normal')
パラメーター推定の横にある区間は分布パラメーターの 95% 信頼区間です。
Más respuestas (0)
Ver también
Categorías
Más información sobre 半正規分布 en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!