mle with non-anonymous custom pdf, HELP
1 次查看(过去 30 天)
显示 更早的评论
There appear to be no complete examples of mle with custom non-anonymous pdfs. The below yields a nonsense error message. HELP!
%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 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!