Fitting 1-D curve to data points, minimizing pre-defined error/loss function.
0
votes
0answers
16 views
When to use which R function to fit parameters?
There are several functions in GNU R to fit parameters of a function f to data.
What are the benefits and the disadvantages of each in short?
As far I understand lm() is the best method, if it is ...
0
votes
0answers
21 views
Processing weighted data for curve fitting in R
Hi…I have a very basic question regarding the input of weighted data into R. Currently I have to process data (mostly for curve fitting purposes) similar to the following:
> head(mydata, 10)
...
1
vote
1answer
13 views
lsqcurvefit input parameters matlab
I have a large set of x-data and a large set of y-data that form a series of irregular lorentzian peaks. I am trying to use the builtin matlab function lsqcurvefit
X = lsqcurvefit(FUN,X0,XDATA,YDATA)
...
0
votes
1answer
24 views
curve fitting of a part of the original plot in matlab
I want to do curve fit for this plot of f only in the part where x is from 0.0001 to 0.007 and where y is from 0.00000001 to 0.0000009 . i hv tried so much through curve fit tool boxes using exclusion ...
0
votes
1answer
28 views
How to do Curve fitting for a part of data only?
I have a curve from an inverse Fourier transform. The independent variable x runs from 0 to 32 but the dependent variable y is 0 after approaximately 20x10^-3 . So I want to fit a curve only in the ...
0
votes
0answers
8 views
least square optimization NOT CURVE FITTING
i'm dealing with a least squares(SCIPY) problem. usually a least sq problem has the X data and Y data given and the general form of the function is given such as linear/quadratic/log and based on the ...
3
votes
1answer
65 views
How to fit data with non linear function and plot data and fit with ggplot()
A measurement shows a signal that is formed like a square root function with offset and a factor. How can I find the coefficients and plot the raw data and the fitted curve in one plot?
...
0
votes
3answers
57 views
Polynomial fitting using L1-norm
I have n points (x0,y0),(x1,y1)...(xn,yn). n is small (10-20). I want to fit these points with a low order (3-4) polynomial: P(x)=a0+a1*x+a2*x^2+a3*x^3.
I have accomplished this using least squares ...
0
votes
1answer
36 views
Suggestion for curve fitting
I have this set of data:
X: Y:
0. 0.
0.001417162 0.0118
0.002352761 0.0128
0.003123252 0.0135
0.003866221 0.0138
0.004045083 0.0147
0.005544762 0.0151
0.006260197 0.0156
...
1
vote
2answers
36 views
List<double> to double[,] for ALGLIB
I'm pretty new in C# and I would like to use it to write a software for the calibration of an AFM cantilever. Therefor, I would need to fit a pretty ugly function to the first peak of some none linear ...
1
vote
0answers
29 views
Using SciPy curve_fit for data with multiple functional forms
I'm trying to fit some data that starts out flat, sharply peaks at time=0, and then decays as two negative exponentials (first as a fast one, and then after a small amount of time as a slower one). ...
1
vote
2answers
62 views
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_fit
def func(x, a, b):
return a + b*x
xlist = [10, 30, 50, 70, 90, 110, 130, 150, 170, 190, 210, ...
2
votes
0answers
42 views
Best path between two curves
My aim is to find a smooth best fit line between this two circuit curvy shapes.
Is there any algorithm betten than mine that can find a set of points (or a curve) between two lines like this example?
...
0
votes
0answers
28 views
customizing contour from curve fitting toolbox in MATLAB
I have 3 column data, x,y and z.
foo = fit([x,y],z, 'cubicinterp');
plot(foo, 'Style','Contour')
I am using following code to generate a contour from cubic interpolation. However, I could ...
1
vote
1answer
23 views
Estimate parameter of Frank Copula
I'm analyzing some bivariate data with copulas. In order to simulate some copulas I need to estimate the corresponding parameters.
For example:
gumbel.fit<-fit.AC(Udata, "gumbel")
...
0
votes
0answers
31 views
Testing goodness of fit of kernel density estimates. Matlab
I wonder if there is a way for testing the goodness of fit for a kernel density estimate after using ksdensity, so I can pick the better kernel function: epanechnikov or normal or another...
Thanks ...
5
votes
2answers
53 views
Why would feval return NaN in MATLAB
I have a bunch of points in 2D for which I know the value, and I'd like to fit a cubic spline through them to interpolate some other data around using MATLAB.
My code looks like:
fitobject = ...
3
votes
3answers
113 views
MATLAB curve-fitting, exponential vs linear
I have an array of data which, when plotted, looks like this.
I need to use the polyfit command to determine the best fitting exponential for the time roughly between 1.7 and 2.3. I must also ...
0
votes
3answers
72 views
Python curve fit library that allows me to assign bounds to parameters
I'd like to be able to perform fits that allows me to fit an arbitrary curve function to data, and allows me to set arbitrary bounds on parameters, for example I want to fit function:
f(x) = ...
1
vote
1answer
66 views
Least Squares Minimization Complex Numbers
I've been using my Matlab, but it's my vision to eventually switch over to doing all of my analysis in Python since it is an actual programming language and a few other reasons.
The recent problem ...
1
vote
1answer
65 views
MATLAB - Optimization of SIR epidemic model
I'm trying to model a flu epidemic using the SIR model: http://en.wikipedia.org/wiki/Epidemic_model#The_SIR_Model.
It basically requires me to solve 3 differential equations simultaneously.
My task ...
2
votes
1answer
89 views
MATLAB curve-fitting with a custom equation
I'm working on curve-fitting data which consists of two arrays:
t: 1, 3, 4, 7, 8, 10
P: 2.1, 4.6, 5.4, 6.1, 6.4, 6.6
The relationship between the two variables is given by P = mt/(b+t). I'm told to ...
1
vote
1answer
52 views
Fit a curve in angle line?
I have two lines that start and end at random locations on a screen and create an angle. I then have an object follow these two lines. However at the intersection between the first and second line, ...
0
votes
2answers
41 views
Is there a lsqcurvefit equivalent in java? [duplicate]
Or any other function that could take several pairs as input and output the fitted curve or function in the format you want.
0
votes
0answers
39 views
scipy.optimize.leastsq() - how to calculate pseudo R-squared
I hope there are some statistics experts here that can help me out...
I am using leastsq() to fit data to a logistic model:
def model(x, EC50, slope, top, bottom):
return bottom + ((top - bottom) ...
0
votes
0answers
15 views
Using lmfit 3.5 in cpp
I have a problem when I try to build my main class.
I have a main where I call my DistanceCalculator. I create a new Object and call the calculation function:
DistanceCalculator *dis = new ...
1
vote
1answer
32 views
class method as a model function for scipy.optimize.curve_fit
There is a statement in the manual of curve_fit that
The model function, f(x, ...). It must take the independent variable as the first argument and the parameters to fit as separate remaining ...
2
votes
1answer
111 views
How do I put a constraint on SciPy curve fit?
I'm trying to fit the distribution of some experimental values with a custom probability density function. Obviously, the integral of the resulting function should always be equal to 1, but the ...
0
votes
2answers
95 views
Python / Scipy - implementing optimize.curve_fit 's sigma into optimize.leastsq
I am fitting data points using a logistic model. As I sometimes have data with a ydata error, I first used curve_fit and its sigma argument to include my individual standard deviations in the fit.
...
1
vote
3answers
218 views
Fitting sigmoid to data
There are many curve fitting and interpolation tools like polyfit (or even this nice logfit toolbox I found here), but I can't seem to find anything that will fit a sigmoid function to my x-y data.
...
3
votes
1answer
131 views
Fourier transform / iterative deconvolution fitting in python using numpy/scipy
I would like to fit a fluorescent lifetime curve. These curves are given by the convolution of the instrument response function (IRF, assumed Gaussian) and a (multi) exponential decay:
Where G is ...
0
votes
1answer
39 views
Get function handle of fit function in matlab and assign fit parameters
I'm fitting custom functions to my data.
After obtaining the fit I would like to get something like a function handle of my fit function including the parameters set to the ones found by the fit.
I ...
1
vote
1answer
91 views
Python - R square and absolute sum of squares obtainable by scipy.optimize curve_fit?
I am fitting curves using curve_fit. Is there a way to read out the coefficient of determination and the absolute sum of squares?
Thanks, Woodpicker
0
votes
1answer
36 views
Problems calculating nls() in R
I'm trying to fit point data with polynomial functions within the program R and want to see which order makes the best fit. I use the nonlinear regression model nls(function, data, start), the ...
1
vote
1answer
35 views
What does the error message “w = 0 in Givens();” mean when trying curve fitting in gnuplot?
I keep having the w = 0 in Givens(); error message when I try to use gnuplot built-in curve fitting feature.
What I do is trying to fit experimental data to a certain mathematical model in gnuplot.
I ...
2
votes
2answers
85 views
Curve fitting for geo data
I recently whipped up a script for capturing large amounts geo data from Twitter's streaming API. I'm looking for some way to create a model to represent the geo "activity" for any given lat/lng point ...
1
vote
1answer
117 views
B-spline fitting to 2D discrete data points (pixels of contour image)
I am trying to fit a B-spline to a set of ordered discrete data points which represent pixels of a contour extracted from an image.
While the below code works fine for some simple shapes, but not for ...
1
vote
1answer
54 views
Fit maximum convex hull to interior of a set of points
I'd like to find the largest convex hull which fits in the interior of a set of points. I have a set of points which are roughly circular, with a large number of outlier points outside of the circle ...
0
votes
0answers
16 views
“Law of the Wall"
I am new to this site and this happens to be my first question. So i am writing to find out how i can model up the “Law of the Wall” Method to Matlab.
...
1
vote
0answers
25 views
Fitting an arbitrary function to measurements with x and y errors
As a physicist, my measurement data almost always has x and y errors. I can fit functions like a x^2 \exp(-b x^2) to it using gnuplot or scipy.optimize.curve_fit in Python. The fit error I get for a ...
0
votes
2answers
75 views
curve fitting estimate parameter - inverse square law
I want to make a plot force vs position (for coulomb's law) and estimate the constant e0.
I have the values of charges , q1=1,q2=1.
I have for example the
...
1
vote
3answers
83 views
Optimize constants in differential equations in Python
Okay so how would i approach to writing a code to optimize the constants a and b in a differential equation, like dy/dt = a*y^2 + b, using curve_fit? I would be using odeint to solve the ODE and then ...
0
votes
2answers
64 views
ValueError: operands could not be broadcast together with shapes (0) (26) when using optimize.curve
I'm trying to get a best fit line to some data my script generates. This is what I have:
import numpy as np
import scipy as sp
.
.
.
def func(x, a, b, c):
return a*np.exp(-b*x) + c
popt, pcov = ...
1
vote
1answer
97 views
Fitting parabolic shape to data (is it possible to use logic statements with SciPy CurveFit?)
I’m trying to fit data with a parabola shape of the form:
Y(x) = a(1 – (x/b)^2) for |x| < b .......
Y(x) = 0 otherwise
And I’ve added in two extra degrees of freedom so the parabola can be ...
0
votes
1answer
63 views
fitting data with an integral equation in python
I have some data that I am trying to fit with a model that includes and definite integral equation. My strategy was to use the optimize.leastsq and integrate.quad, I keep getting a type error: ...
2
votes
0answers
66 views
Polynomial Constrained Least Squares curve fitting with matlab
I want to fitted and draw a curve that constrained with below boundary condition:
diff (yfit)<=0
That yfit is polynomial fitted function in degree n.
The condition ensure that the polynomial ...
0
votes
0answers
228 views
Restoration of functional dependencies in MATLAB
I have such table (http://img836.imageshack.us/img836/1418/47709342.png).
And I need to find the dependence of RT(RW, WT, PT). I.e. i must receive the function of three variables. How can i do this ...
0
votes
2answers
374 views
How to fit a curve to a damped sine wave in matlab
I have some measurements done and It should be a damped sine wave but I can't find any information on how to make (if possible) a good damped sine wave with Matlab's curve fitting tool.
Here's what I ...
0
votes
2answers
81 views
Power law with a constant factor using curve_fitting
I want to fit my x and y data using power law with a constant factor. My power law model is y(r) = F0 + F*(r)**alpha where F0 is a constant. My code is,
x = [0.015000000000000001, ...
0
votes
2answers
128 views
Matlab recursive curve fitting with custom equations
I have a curve IxV. I also have an equation that I want to fit in this IxV curve, so I can adjust its constants. It is given by:
I = I01(exp((V-R*I)/(n1*vth))-1)+I02(exp((V-R*I)/(n2*vth))-1)
vth and ...