Here is the entire code. Trying to fit the data into a piecewise exponential fucntion and testing the maximum likelihood. Where is the mistake. Could not figure it out. Help please..
3 ビュー (過去 30 日間)
古いコメントを表示
The entire code is attached. Please check it out. I spent hours trying to figure the source of the mistake but could not get around it.
0 件のコメント
採用された回答
John BG
2018 年 1 月 2 日
Hi Marwan
when correcting the following line
[mldln,conf1] = mle(xdata,'pdf',@pdfdln,'start',[mu,sig],'upperbound',[5,5], 'lowerbound',[0.1,0.1],'options',options);
with
[mldln,conf1] = mle(xdata,'pdf',@dln,'start',[mu,sig],'upperbound',[5,5], 'lowerbound',[0.1,0.1],'options',options);
then the function produces a histogram, no errors
.
Does it fix it?
if so would you please be so kind to consider marking my answer as Accepted Answer?
To any other reader, if you find this answer useful please consider clicking on the thumbs-up vote link
thanks in advance for time and attention
John BG
2 件のコメント
Walter Roberson
2018 年 1 月 2 日
Good catch about pdfdln .
It turns out, though, that another fix is required. In the function dbn, right before the for loop you need to add
z = zeros(rs);
This is needed so that the output is the same orientation as the input; without this change, you get a crash in fminsearch that is difficult to track down.
その他の回答 (1 件)
Walter Roberson
2018 年 1 月 1 日
You have
[mldln,conf1] = mle(xdata,'pdf',@pdfdln,'start',[mu,sig],'upperbound',[5,5], 'lowerbound',[0.1,0.1],'options',options);
but pdfdln is not a function you define, and is not a Mathworks supplied function or any function I can find anywhere on the Internet.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!