On Wednesday 29 July 2009, Bala subramanian wrote: > Friends, > > I wish to do some curve fitting with python by defining my own > equations. Could someone please give some guidance or examples on > doing the same.
You can use the Numpy/Scipy libraries for that. I think they have examples for curve fitting on their website. But unfortunately the website is down (or my Internet is broken). http://www.scipy.org/ There are also special mailing lists for Numpy/Scipy/Matplotlib users, to which you should subscribe. This one would be good for your question: http://projects.scipy.org/mailman/listinfo/scipy-user If I understand you right, you have a formula with some parameters. Now you are searching for parameter values so that the formula really goes through the data points. This is a task for optimization functions. Kind regards, Eike. _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
