The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
28 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) ...
2
votes
1answer
34 views

Solver for sparse linearly-constrained non-linear least-squares

Are there any algorithms or solvers for solving non-linear least-squares problems where the jacobian is known to always be sparse, and the solution is constrained with either: Linear equality ...
0
votes
2answers
53 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. ...
0
votes
1answer
24 views

Shape-matching of plots using non-linear least squares

What would b the best way to implement a simple shape-matching algorithm to match a plot interpolated from just 8 points (x, y) against a database of similar plots (> 12 000 entries), each plot having ...
0
votes
2answers
37 views

Python statsmodels OLS: how to save learned model to file

I am trying to learn an ordinary least squares model using Python's statsmodels library, as described here. sm.OLS.fit() returns the learned model. Is there a way to save it to the file and reload ...
0
votes
1answer
42 views

How to get the predicted values in training data set for Least Squares Support Vector Regression

I would like to make a prediction by using Least Squares Support Vector Machine for Regression, which is proposed by Suykens et al. I am using LS-SVMlab, which you can find the MATLAB toolbox here. ...
0
votes
1answer
58 views

How to run OLS Regression by using SPSS?

I need to conduct OLS regression by using SPSS for my thesis. I was wondering what are the steps in conducting OLS regression? (1) SPSS - Analyze - Regression - Linear ? Is this correct? (2) Where ...
0
votes
1answer
43 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: ...
5
votes
2answers
200 views

R draw (abline + lm) line-of-best-fit through arbitrary point

I am trying to draw a least squares regression line using abline(lm(...)) that is also forced to pass through a particular point. I see this question is related, but not quite what I want. Here's an ...
0
votes
0answers
32 views

Reconsturcting a 2D image in a 3D scene

Here is a brief explanation of my problem: I have a 2D patch(A) which I want to map onto a 2D photograph(B) of a 3D scene. In the 2D photograph I have collected and can find and recognize 10 points ...
1
vote
1answer
189 views

Best fit plane algorithms why different results? (SOLVED)

Update: I have modified the Optimize and Eigen and Solve methods to reflect changes. All now return the "same" vector allowing for machine precision. I am still stumped on the Eigen method. ...
0
votes
2answers
69 views

How to perform least squares regression in R given training and testing data with class labels?

I have a 63*62 training set and the class labels are also present. The test data is a 25*62 dimensions and has the class labels too. Given this how would I perform least squares regression? I am using ...
0
votes
0answers
36 views

Printing Jacobian in output from numdifftools 0.4.0 for python

I need to obtain the Jacobian as output from scipy.optimize.leastsq. I've found a number of threads online which deals with the same question but provide no conclusive answers. I've tried a number of ...
1
vote
1answer
19 views

Reusable error-squared minimizer func for multiple variables

I'm trying to solve for three variables in a mathematical formula. The formula is as follows: Dim secondMomentOfBeam As Func(Of Beamμ2params, Double, Double) = Function(params, z) ...
1
vote
1answer
205 views

python optimize.leastsq: fitting a circle to 3d set of points

I am trying to use circle fitting code for 3D data set. I have modified it for 3D points just adding z-coordinate where necessary. My modification works fine for one set of points and works bad for ...
-1
votes
2answers
151 views

Equation of the least-squares parabola for data set. (FORTRAN)

Original Question: To find the equation of the parabola y = A + Bx + Cx^2 that best fits a set of n data points, the values of A, B, and C must be determined for which the sum of the ...
1
vote
4answers
104 views

backslash operator in MATLAB for a vector

In MATLAB let us type A = [0.1195952380, 0.2552619050, 0.3235000000,... 0.1289285710, 0.6675476190, -0.0770000000,... 0.1973809520]; and b0 = 1.7250238100; If I use backslash operator ...
1
vote
2answers
47 views

User-specified function in mpfit

I have been an IDL programmer for sometime now and looking to transition to Python. I find that MPFIT's IDL version exists in Python. However, I am looking for MPFITFUN version in Python ...
0
votes
1answer
141 views

NonLinearModelFit in scipy (leastsq) with weightings

I am very new to scipy so bare with me please :-) I have been using mathematica recently to mess around with my data. I have a method of calculating an x,y coordinate from 4 or more distance ...
0
votes
1answer
76 views

How do I include errors for my data in the lmfit least squares miniimization, and what is this error for conf_interval2d function in lmfit?

I am new to python, and trying to use the lmfit package to check my own calculations, however I am unsure (1) as to how to include the errors for data (sig) for the following test (and 2) of an error ...
0
votes
1answer
65 views

Is there a python implementation of the MCR-ALS algorithm

Multivariate Curve Resolution-Alternating Least Squares (MCR-ALS) is a popular chemometric method used for the resolution of multiple component responses in unknown unresolved mixtures. I would like ...
0
votes
1answer
76 views

Least squares interpolation in Octave

I did a physics experiment, and got the following data: R=[2.91 2.19 1.76 1.43 1.20 1.01 0.88 0.77 0.67 0.6 0.52 0.46 0.41 0.37]; t=[35:5:100]; T=t+273.15; Now I need to do a least squares ...
0
votes
0answers
54 views

Least Square Fitting in Python with Heaviside Function

I'm currently working on a least squares fitting routine in Python to fit a function of the form A(x) * Heaviside(x) + B(x) * Heaviside(x)...so depending on the x value, one of the two parts should be ...
0
votes
1answer
170 views

matlab — estimate error (least squares)

I have the equation ln(c)=-1/2k^2 * z^2 ,where y=ln(c) ,x=z^2 and a=-1/2k^2. I want to estimate the a , so : a=polyfit(z.^2,log(abs(c)),1) Because i have the (initial) equation c=exp(-z^2/2k^2), ...
0
votes
1answer
339 views

Weighted linear least squares in OpenCV

OpenCV's cvSolve can solve a linear least-squares problem like this: // model: y = a1*x1 + a2*x2 + a3 CvMat *y = cvCreateMat(N, 1, CV_64FC1); CvMat *X = cvCreateMat(N, 3, CV_64FC1); CvMat *coeff = ...
0
votes
1answer
161 views

Two dimensional least squares fitting

I have a two dimensional data set, of some fixed dimensions (xLen and yLen), which contains a sine curve. I've already determined the frequency of the sine curve, and I've generated my own sine data ...
1
vote
1answer
293 views

Compute least squares using java

I am trying to find a java code to compute the least squares solution (x) in the Ax=b equation. Suppose that A = [1 0 0;1 0 0]; b = [1; 2]; x = A\b returns the x = 1.5000 0 ...
0
votes
0answers
68 views

3D vectors intersection using least-squares approach

I have been trying to get the intersection point of some 3D lines. The lines are represented in the form Line: s + t*r. The lines doesn't really intersect, so I would like to get the point in 3D that ...
2
votes
1answer
254 views

Logarithmic Least Square Method on Matlab

How can I use this function y=(a*x)./(b+x) to approximate this data x = [1.5 4 5 8 12 16 17], y = [1.6 2.6 2.4 3.2 3.4 3.6 3.4] with the least square method using matlab? I used logarithms and got ...
3
votes
1answer
159 views

Scipy leastsq() function overhead

I am working on an image analysis program and I have narrowed down my bottleneck to attempts to fit a 2D gaussian to a small window (20x20) pixels many times. 90% of the execution time is spent in ...
0
votes
0answers
104 views

Function for Boundary Constrained Least Square Optimisation in C++?

I'm fairly new to using Visual C++ 2010 Express but I'm not new to the basics and I'm trying to figure out how to use an external library to perform boundary constrained least squares optimisation. ...
0
votes
1answer
73 views

histogram$breaks works for data, histogram$mids gives error

I'm wondering if this is a bug. I have the following piece of code: h2 <- hist(c(rep(65, times=5), rep(25, times=5), rep(35, times=10), rep(45, times=4))) model2 = nls(formula = log(counts[1:5]) ...
4
votes
1answer
492 views

Exponential decay curve fitting in numpy and scipy

I'm having a bit of trouble with fitting a curve to some data, but can't work out where I am going wrong. In the past I have done this with numpy.linalg.lstsq for exponential functions and ...
0
votes
0answers
174 views

Fit a power-law to a histogram using least-squares or maximum likelihood in R [closed]

I'm analysing some data (and energy distribution) and I have these histograms (I'm plotting them in ggplot2) and want to fit them a power-law function and get the value of the gamma of the fit (the ...
1
vote
1answer
164 views

python scipy leastsq fit with complex numbers

I have a data set of complex numbers, and I'd like to be able to find parameters that best fit the data. Can you fit data in complex numbers using leastsq as implemented by scipy in python? For ...
1
vote
0answers
161 views

Package nlme, generalized least square fit with corClass ARIMA(p,d,q)

In R, the package nlme can be used to fit a generalized least square model. We can fit with an ARMA correlation like fm1 <- gls(Y ~X1+X2+X3,correlation = corARMA(p=2,q=1)) Is it possible to fit ...
0
votes
2answers
202 views

Fitting an inverse parabola. Cant reach least squares analytical expresion [closed]

I am trying to fit some points to an inverse parabola, in the form of F(x)=1/(ax^2+bx+c). My objective is to program a function in c++ that would take a set of 10-30 points and fit them to the ...
2
votes
2answers
127 views

High performance calculation of least squares difference from all possible combinations (n lists)

I'm looking for a very efficient way to calculate all possible combinations from n lists and then keep the combination with the smallest least squares difference. I already have a code that does it, ...
1
vote
1answer
174 views

Multiple linear regression for a surface using NumPy - example

This question is close to: fitting a linear surface with numpy least squares, but there's no sample data. I must be terribly slow but it seems I can't get it to work. I have the following code: ...
1
vote
1answer
100 views

Python: Least squares with error on xdata

I included the error on the ydata by using weights for my residuals. How can I implement an error on xdata? I hope I don't have to switch fitting routines, because I now use the lmfit package which is ...
1
vote
1answer
82 views

Parallel fitting on Mathematica

I have a data that looks like as follows data= Table[ Table[ a[[i]]*j+1, ,{j,dataLength}] ,{i,numOfDatasets}] I would like to fit these datasets with a ...
3
votes
3answers
406 views

Finding translation and scale on two sets of points to get least square error in their distance?

I have two sets of 3D points (original and reconstructed) and correspondence information about pairs - which point from one set represents the second one. I need to find 3D translation and scaling ...
1
vote
1answer
278 views

Solving a system of equations using Python/Scipy for a set of measurements

I have an physical instrument of measurement (force platform with load cells) which gives me three values, A, B and C. It happens, though, that these values - that should be orthogonal - actually are ...
0
votes
1answer
273 views

Eigen library - least squares

I want to use a least squares problem with the use of Eigen library. My options are 2, sysAAA.jacobiSvd( Eigen::ComputeThinU | Eigen::ComputeThinV ).solve( sysBBB ) ...
1
vote
1answer
337 views

Scipy LeastSq errorbars

I'm fitting an experimental spectrum to a theoretical expectation using LeastSq from SciPy. There are of course errors associated with the experimental values. How can I feed these to the LeastSq or ...
1
vote
1answer
254 views

matlab: lsqcurvefit, only one upper bound

simple question.. Is it possible to set only one upper bound for lsqcurvefit, without limiting others? I need something like: lb = [0 0 0]; ub = [~ ~ 5]; Thanks!
2
votes
3answers
470 views

Fit a circle or a spline into a bunch of 3D Points

I have some 3D Points that roughly, but clearly form a segment of a circle. I now have to determine the circle that fits best all the points. I think there has to be some sort of least squares best ...
1
vote
1answer
324 views

Fitting a 2D-function to a 2D dataset with errors in python

I have a 2D np.array as experimental data, so something with a shape like (50,50), corresponding to the pixel of my cam. I have a second np.array of the same shape for errors on each point. So my ...
3
votes
1answer
1k views

Non linear function parameter estimation - matlab, lsqnonlin, fzero

I'm having difficulty with a fitting problem. From the errors that I get I imagine that the boundaries are not defined correctly and I haven't managed to find a solution. Any help would be very much ...
2
votes
2answers
236 views

Wrong solution of a linear equation, or why does A*(A\B) not equal B?

How is it possible that the result of A*(A\D) below is not equal to D ? It should yield D - here is an extract of the Octave documentation : Systems of linear equations are ubiquitous in ...

1 2 3