Using a symsum inside a fsolve
이전 댓글 표시
I need to estimate the parameters of a model using the equations of the attached image. From my readings of the matlab documentation I would have to use fsolve to solve that system of non-linear equations, but there is a sum of multiple terms inside the equations. If I understood correctly, I would have to run a Symsum "nested" inside the fsolve. Is that correct? How do I implement this? Any advice is appreciated.
댓글 수: 1
VBBV
2023년 8월 2일
No, you can run symsum separately for the summation terms only. Nested symsum inside a loop may not be necessary.
답변 (1개)
If I understood correctly, I would have to run a Symsum "nested" inside the fsolve. Is that correct? How do I implement this?
No, it's not correct. You can either use a for loop to add the terms one by one or use MATLAB's "sum". "symsum" is inadequate because there are no symbolic variables if you use "fsolve".
댓글 수: 11
Leonardo Peixoto
2023년 8월 5일
Leonardo Peixoto
2023년 8월 5일
Torsten
2023년 8월 5일
Use "mle":
Look at the example "Fit Custom Probability Density Function" to see how to proceed.
x in the example is your data vector. Instead of v and d, you have q, beta and lambda as parameters.
And instead of ncx2rnd, you have your f from above.
Leonardo Peixoto
2023년 8월 8일
Torsten
2023년 8월 8일
We need your code and possibly your data in order to reproduce the error.
Please include as plain ascii and not as graphics.
Torsten
2023년 8월 10일
I cannot tell if it makes sense what you are doing. Usually, one directly takes the raw data to fit the distribution to without preprocessing them as you do.
Leonardo Peixoto
2023년 8월 10일
편집: Leonardo Peixoto
2023년 8월 10일
Leonardo Peixoto
2023년 8월 10일
Torsten
2023년 8월 10일
Maybe you could give a link to the paper you are concerned with so that I know what you are trying to do.
Leonardo Peixoto
2023년 8월 12일
카테고리
도움말 센터 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

