How do I get MLE(Maximum Likelihood Estimation)?
4 views (last 30 days)
Show older comments
Hello
How do I get MLE at data.mat?
0 Comments
Accepted Answer
Star Strider
on 7 Apr 2022
LD = load('1민제 강 data.mat');
data = LD.data;
[phat,pci] = mle(data)
figure
histfit(data)
It might be best to choose a different distribution.
.
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!