dieek / CoinFlipGui

Learning to use tkinter module through a simple Coin Flip program.
GNU General Public License v3.0
1 stars 1 forks source link

Python 3 tkinter GUI curve and surface fitter #1

Open zunzun opened 7 years ago

zunzun commented 7 years ago

I saw your tkinter project on GitHub and thought you might like to see my Python GUI graphical curve fitter and surface fitter on github, BSD license. The matplotlib 3D surface plots of the fitted equations look really cool (my background is in nuclear engineering and industrial radiation physics).

The code uses a linear solver if the equation is linear, and a non-linear Levenberg-Marquardt solver from scipy if the equation is non-linear. It automatically uses scipy's genetic algorithm to produce initial parameter estimates for the non-linear solver.

The URL on github is https://github.com/zunzun/tkInterFit

James Phillips

dieek commented 7 years ago

Thanks for contacting me! I'll take a look at it and check it out!