Skip to content Skip to sidebar Skip to footer
Showing posts with the label Curve Fitting

Strange Result With Python's (scipy) Curve Fitting

This is my code (it's an example of a larger piece of code): from scipy.optimize import curve_f… Read more Strange Result With Python's (scipy) Curve Fitting

Python Scipy.optimise.curve_fit Gives Linear Fit

I have come across a problem when playing with the parameters of the curve_fit from scipy. I have i… Read more Python Scipy.optimise.curve_fit Gives Linear Fit

How To Fit To The Outer Shell Of A Function

I am trying to make a gaussian fit on a function that is messy. I want to only fit the exterior out… Read more How To Fit To The Outer Shell Of A Function

How Do I Add Weighting To A Curve Not The Data Points During Fitting? What Import/func Do I Use?

I've tried scipy.optimize import curve_fit but it only seems to change the data points. I want … Read more How Do I Add Weighting To A Curve Not The Data Points During Fitting? What Import/func Do I Use?

How Do I Optimize And Find The Coefficients For Two Equations Simultaneously In Python 2.7?

I have data sets that I would like to fit to two equations: y1 = a1 + a2 * T / 2 + a3 * T^2 / 3 + a… Read more How Do I Optimize And Find The Coefficients For Two Equations Simultaneously In Python 2.7?

Trouble With Curve Fitting - Matplotlib

I am trying to plot a sin function to a data set. I found a tutorial online using scipy.optimize, b… Read more Trouble With Curve Fitting - Matplotlib