1 / 28

Data fitting programming Math 371

Data fitting programming Math 371. Can we do better?. x. c*x-r. Use these estimated parameters to run the solution of the model (the initial point is the first data point in the data table) and compare with data points. I use ode23 here, you can use ode45 to obtain the same solution.

Download Presentation

Data fitting programming Math 371

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Data fitting programmingMath 371

  2. Can we do better? x .

  3. c*x-r

  4. Use these estimated parameters to run the solution of the model(the initial point is the first data point in the data table)and compare with data points

  5. I use ode23 here, you can use ode45 to obtain the same solution

  6. The solution fits data reasonably well but not very well. Do we have a better method for parameter estimation and data fitting?

  7. The solution fits data reasonably well but not very well. Do we have a better method for parameter estimation and data fitting? YES!

  8. Direct Method Least-square data fitting

  9. Revisit L-V predator-prey model Use the least-square method to fit data and estimate parameter values directly

  10. You can use ode45 or other ODE solvers; use help files to check their differences

  11. Almost perfect data fitting!

  12. a b c r

More Related