Using a symsum inside a fsolve
Mostra commenti meno recenti
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 Commento
VBBV
il 2 Ago 2023
No, you can run symsum separately for the summation terms only. Nested symsum inside a loop may not be necessary.
Risposte (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 Commenti
Leonardo Peixoto
il 5 Ago 2023
Leonardo Peixoto
il 5 Ago 2023
Torsten
il 5 Ago 2023
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
il 8 Ago 2023
Torsten
il 8 Ago 2023
We need your code and possibly your data in order to reproduce the error.
Please include as plain ascii and not as graphics.
Torsten
il 10 Ago 2023
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
il 10 Ago 2023
Modificato: Leonardo Peixoto
il 10 Ago 2023
Leonardo Peixoto
il 10 Ago 2023
Torsten
il 10 Ago 2023
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
il 12 Ago 2023
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

