필터 지우기
필터 지우기

why MLE needs iteration to approximate the parameters?

조회 수: 1 (최근 30일)
Joy Tian
Joy Tian 2015년 7월 24일
댓글: Joy Tian 2015년 7월 24일
Hi Matlab fans,
I try to use mle function in Matlab to get the estimation of parameters.
I notice that in the syntax of mle , it requires to input the start-up guessing of parameters for the custom CDF.
Why? I remember in statistics class, my teacher said, to get the estimation from MLE, only partial derivatives of L function on each parameter is needed. If I substitute variables with corresponding sample value, I can obtain the values of parameters.
Can it be realized by Matlab?
Sincerely, Joy
  댓글 수: 2
Torsten
Torsten 2015년 7월 24일
The partial derivatives of the L function with respect to the unknown parameters are set to zero.
Then the resulting system of equations
dL/dp1 = 0
dL/dp2 = 0
...
dL/dp_n = 0
is solved for p_1,p_2,...,p_n.
This is usually a Newton-iteration which converges the better, the better the starting values.
Best wishes
Torsten.
Joy Tian
Joy Tian 2015년 7월 24일
What you said fully expressed my idea, Torsten.
Thank you for your supplement :)
Best regards,
Joy

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2015년 7월 24일
편집: Matt J 2015년 7월 24일
only partial derivatives of L function on each parameter is needed.
That's true if the MLE has an analytical solution, which would often be the case in introductory MLE examples in a statistics course. More generally, though, a closed-form solution is not available and the maximizing parameters have to be found through iterative optimization.
  댓글 수: 1
Joy Tian
Joy Tian 2015년 7월 24일
Perfect, Matt!
Thanks for further guidance. That is sooo helpful.
Best wishes,
Joy

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by