フィルターのクリア

How do I get MLE(Maximum Likelihood Estimation)?

3 ビュー (過去 30 日間)
민제 강
민제 강 2022 年 4 月 7 日
回答済み: Star Strider 2022 年 4 月 7 日
Hello
How do I get MLE at data.mat?

採用された回答

Star Strider
Star Strider 2022 年 4 月 7 日
See the documentation on the mle function.
LD = load('1민제 강 data.mat');
data = LD.data;
[phat,pci] = mle(data)
phat = 1×2
29.9889 3.0091
pci = 2×2
29.3551 2.6393 30.6227 3.5464
figure
histfit(data)
It might be best to choose a different distribution.
.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProbability Distributions についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by