How do the initial parameter values "start" work in the Three-Parameter Weibull Distribution?
古いコメントを表示
Trying to estimate a Three-Parameter Weibull Distribution. In the scripture of Matlab, there is given the following execution:
rng('default') %For reproducibility
data = wblrnd(1,1,[1000,1]) + 10;
custompdf = @(x,a,b,c) (x>c).*(b/a).*(((x-c)/a).^(b-1)).*exp(-((x-c)/a).^b);
opt = statset('MaxIter',1e5,'MaxFunEvals',1e5,'FunValCheck','off');
params = mle(data,'pdf',custompdf,'start',[5 5 5],'Options',opt,'LowerBound',[0 0 -Inf],'UpperBound',[Inf Inf min(data)])
I dont really understand, how the numbers after 'start' work? What relationship do the numbers have to the scale, shape and location parameters? Days spent searching for an answer.. The following picture demonstrates my problem:

1 件のコメント
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Weibull Distribution についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!