Complete example of mle custom pdf w/o anonymous pdf please. HELP!
3 次查看(过去 30 天)
显示 更早的评论
Among the many examples of mle with custom pdfs there are none without anonymous pdfs that have non-conflicting notation, Can someone please provide a complete example including the mle arguments? I keep getting error messages that are obviously wrong and give little clue as to what is actually wrong. The test of wpdf below works just fine. The mle crashes. HELP! Thank you.
%Initialize theta.
theta1 = 0.1;
theta2 = 0.5;
start = [theta1 theta2]
%QC test of pdf for prob. of observed pref. rank vector.
testlogprob = log(wpdf(theta1, theta2, data)) %Call the pdf.
pdfH = @wpdf; %Define pdf "function handle."
[phat,pci]= mle(dat,'pdf',@pdfH(theta1, theta2, data),'start',start)
0 个评论
回答(1 个)
Andrew Newell
2014-4-28
You're entering the pdfH argument incorrectly. Try this:
[phat,pci] = mle(dat,'pdf',pdfH,'start',start);
4 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!