Maximum likelihood estimation for sum of series
Show older comments
Hello,
Im trying to estimate the maximum likelihood for a sum of series. Right now my code looks like this:
a=[30 20 30]
b=[50 10 40]
F = symsum(log(exp(a*k)/(exp(a*k)+exp(b*k))),k,[0 3])
custlogpdf = @(data,k) F
phat = mle(test.individuum,'logpdf',custlogpdf,...
'start',[1])
My custom distribution should be this funktion

and P in this case are

How do I insert the funktion into the symsum? I hope someone can help me with this problem.
Accepted Answer
More Answers (0)
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!