Parameters for Frechet Distribution

15 visualizaciones (últimos 30 días)
Nikhilesh Gandhre
Nikhilesh Gandhre el 26 de Sept. de 2019
Comentada: Jeff Miller el 27 de Sept. de 2019
How do i find parameters for two parameter Frechet distribution (shape & scale) using maximum likelihood method?
alpha is shape & beta is scale in the formula

Respuestas (1)

Jeff Miller
Jeff Miller el 27 de Sept. de 2019
You could write a function to compute -log(likelihood of your data) from alpha & beta, then use fminsearch to find the alpha,beta pair minimizing that function (i.e., maximize likelihood).
In case you want to do that, note that your formulas are wrong (I am pretty sure). In all three places where you have "\beta / x", it should be "x / \beta" instead.
  2 comentarios
Nikhilesh Gandhre
Nikhilesh Gandhre el 27 de Sept. de 2019
Editada: Nikhilesh Gandhre el 27 de Sept. de 2019
Formula is correct have a look on the attached pdf file.what you are saying is about the weibul.how do I write the function in matlab.
Jeff Miller
Jeff Miller el 27 de Sept. de 2019
At the end of section 6.2, that pdf file seems to show how to get the MLEs directly (by solving eqns 6.2.4, 6.2.6 and 6.2.13).
But if you want to use fminsearch, the code would look something like this (unchecked):
function [estA, estB] = MLE_est(x,guess)
% x is the vector of data points
% guess is a vector with 2 elements; these are your initial guesses for A and B
ests = fminsearch(@fntominimize,guess);
estA = ests(1);
estB = ests(2);
function minuslnpdf = fntominimize(ests) % use a nested function so it has access to x
estA = ests(1);
estB = ests(2);
% Next compute the pdf values of all x's
pdfs = (estA/estB)*(estB./x).^(estA+1) .* exp( -(estB./x).^estA );
% now compute the minus of the log likelihood function, which is what
% you want to minimize.
minuslnpdf = sum( -log(pdfs) );
end
end

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by