Effacer les filtres
Effacer les filtres

equation solver - how to solve in matlab

2 vues (au cours des 30 derniers jours)
Duncan
Duncan le 14 Avr 2011
I'd like to find the curve of the form
y = a + (b - a)/(1 + (x/c)^ d))
to fit experimental data. I can do this in excel using solver by getting it to minimise the residuals between the curve and experimental data. Is this possible in Matlab without the optimistaion toolbox?
Any suggestions appreciated

Réponse acceptée

Abhishek Gupta
Abhishek Gupta le 14 Avr 2011
Hi Duncan,
You can perform basic curve fitting using the optimization routines available in MATLAB.
Search for "Optimal Fit of a Non-linear Function" in the documentation to find a published version of a demo. This demo shows how one may use FMINSEARCH to achive this objective. You may also open the demo in MATLAB editor by executing:
>> edit fitdemo
Hope this helps.
Abhi...
  1 commentaire
Duncan
Duncan le 15 Avr 2011
Worked a treat! Thanks

Connectez-vous pour commenter.

Plus de réponses (1)

Andrew
Andrew le 10 Août 2011
Hi, I have a similar problem. To simplify assume a linear equation y=mx+c. I have values for the independent variable x, the actual y and want to solve for coefficients m and c. Using Excel Solver I would use random initial values for m and c in my equation, and get a fitted y, say y_fit. Then work the sum of squared residuals between y and y_fit [RSS = sum((y-yfit)^2)]. Then tell Solver to give me a solution for m and c which minimises RSS. Is this possible in Matlab? Can I make use of the Optimisation tool box to do this?
Thanks
  1 commentaire
Duncan
Duncan le 11 Août 2011
Hi Andrew, try the answer above submitted by Abhishek. That worked well for me

Connectez-vous pour commenter.

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by