Borrar filtros
Borrar filtros

How do I get MLE(Maximum Likelihood Estimation)?

3 visualizaciones (últimos 30 días)
민제 강
민제 강 el 7 de Abr. de 2022
Respondida: Star Strider el 7 de Abr. de 2022
Hello
How do I get MLE at data.mat?

Respuesta aceptada

Star Strider
Star Strider el 7 de Abr. de 2022
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.
.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by