Tagged Questions
The least-squares tag has no wiki summary.
7
votes
1answer
611 views
Graphing perpendicular offsets in a least squares regression plot in R
I'm interested in making a plot with a least squares regression line and line segments connecting the datapoints to the regression line as illustrated here in the graphic called perpendicular offsets:
...
6
votes
2answers
314 views
Solving an overdetermined constraint system
I have n real number variables (don't know, don't really care), let's call them X[n].
I also have m >> n relationships between them let's call them R[m], of the form:
X[i] = alpha*X[j], alpha ...
6
votes
3answers
461 views
Non-linear Least Squares Optimization Library for C
I'm looking for a library in C that will do optimization of an objective function (preferrably Levenberg-Marquardt algorithm) and will support box constraints, linear inequality constraints and ...
5
votes
2answers
701 views
Calculating the null space of a matrix
I'm attempting to solve a set of equations of the form Ax = 0. A is known 6x6 matrix and I've written the below code using SVD to get the vector x which works to a certain extent. The answer is ...
5
votes
3answers
460 views
Tools for sparse least squares regression
I want to do sparse high dimensional (a few thousand features) least squares regression with a few hundred thousands of examples. I'm happy to use non fancy optimisation - stochastic gradient descent ...
4
votes
2answers
58 views
Algorithm for calculating the sum-of-squares distance of a rolling window from a given line function
Given a line function y = a*x + b (a and b are previously known constants), it is easy to calculate the sum-of-squares distance between the line and a window of samples (1, Y1), (2, Y2), ..., (n, Yn) ...
4
votes
2answers
132 views
R script - NLS not working
I have 5 (x,y) data points and I'm trying to find a best fit solution consisting of two lines which intersect at a point (x0,y0), and which follow these equations:
y1 = (m1)(x1 - x0) + y0
y2 = ...
4
votes
4answers
441 views
Plotting data and doing a least squares regression with cosines in java
I have data I would like to plot, and more importantly, do a least squares regression on using cosines (instead of using polynomials):
Any recommendations? Thanks.
4
votes
1answer
2k views
How can I calculate a trend line in PHP?
So I've read the two related questions for calculating a trend line for a graph, but I'm still lost.
I have an array of xy coordinates, and I want to come up with another array of xy coordinates ...
3
votes
1answer
47 views
Least squares circle fitting using MATLAB Optimization Toolbox
I am trying to implement least squares circle fitting following this paper (sorry I can't publish it). The paper states, that we could fit a circle, by calculating the geometric error as the euclidean ...
3
votes
1answer
107 views
C# Algebra Linear Library
I'm looking for a C# linear algebra library.
I wan't to solve a homogeneous linear system with least squares minimization.
I've been trying to use some librarys but I was just able to find the ...
3
votes
4answers
281 views
Fit simulated and experimental data points with Python
I have written some code which performs a Monte Carlo simulation and produces curves of signal intensity versus time. The shape of such a curve depends on various parameters, two of which my ...
3
votes
4answers
258 views
Fitting an ellipsoid to 3D data points
I have a large set of 3D data points to which I want to fit to an ellipsoid.
My maths is pretty poor, so I'm having trouble implementing the least squares method without any math libraries.
Does ...
3
votes
2answers
195 views
How to compute minimal but fast linear regressions on each column of a response matrix?
I want to compute ordinary least square (OLS) estimates in R without using "lm", and this for several reasons. First, "lm" also computes lots of stuff I don't need (such as the fitted values) ...
3
votes
2answers
227 views
MATLAB: Running a function from a previous version
EDIT:
Thank you @yoda and @morispaa. You are both right and @morispaa's solution works, i.e. my processing of the transformed coefficients, which is based on assumptions about the space spanned by Z, ...
3
votes
1answer
457 views
3
votes
5answers
243 views
Rating the straightness of a line
I have a data set that defines a set of points on a 2-dimensional Cartesian plane. Theoretically, those points should form a line, but that line may be perfectly horizontal, perfectly vertical, and ...
2
votes
1answer
69 views
Linear regression in java [closed]
I have a java code that performs a linear regression on a set of data using the gaussjordan elimination. It calculates a linear, quadratic and cubic functions using the least squares method. My ...
2
votes
0answers
28 views
How to calculate residuals for two curves (matrixes) of different size?
I've got a theoretical curve which was calculated numerically and an experimental curve (better to say a massive of experimental points). I need to calculate the residuals between these two curves to ...
2
votes
2answers
122 views
k-means return value in R
I am using the kmeans() function in R and I was curious what is the difference between the totss and tot.withinss attributes of the returned object. From the documentation they seem to be returning ...
2
votes
1answer
57 views
Implementing additional constraints in R's nnls
I am using the R interface to the Lawson-Hanson NNLS implementation of an algorithm for non-negative linear least squares that solves ||A x - b||^2 with the constraint that all elements of vector x ≥ ...
2
votes
1answer
121 views
R script - nls function
Can anyone give me a good explanation for what the parameter "algorithm" does in the nls function in R?
Also, how does the formula work? I know it uses a tilda, but I can't really find a ...
2
votes
1answer
100 views
R script - least squares solution to the following [closed]
Possible Duplicate:
Finding where two linear fits intersect in R
Given some points on a graph (usually only about 6 or 7 points), I need to find a best fit solution where the solution ...
2
votes
2answers
447 views
function for weighted least squares estimates
Does R have a function for weighted least squares? Specifically, I am looking for something that computes intercept and slope.
Data sets
1 3 5 7 9 11 14 17 19 25 29
17 31 19 27 31 62 58 35 29 21 ...
2
votes
1answer
180 views
Ruby Library for doing Linear or NonLinear Least Squares Approximation?
Is there a Ruby library that allows me to do either linear or non-linear least squares approximation of a set of data.
What I would like to do is the following:
Given a series of [x,y] data points
...
2
votes
1answer
227 views
User defined Jacobian in MATLAB's lsqnonlin
When using MATLAB's lsqnonlin function, I am trying to give a user-defined Jacobian matrix, as described in the documentation.
The output of the objective function used in lsqnonlin should be a ...
2
votes
2answers
403 views
pseudo inverse of sparse matrix in python
I am working with data from neuroimaging and because of the large amount of data, I would like to use sparse matrices for my code (scipy.sparse.lil_matrix or csr_matrix).
In particular, I will need ...
2
votes
1answer
268 views
Run a function in between each iteration of fsolve in MATLAB
I am using fsolve to minimise an energy function in MATLAB. The algorithm I am using fits a grid to noisy lattice data, with costs for the distances of the grid from each data point.
The objective ...
2
votes
1answer
382 views
Accurate least-squares fit algorithm needed
I've experimented with the two ways of implementing a least-squares fit (LSF) algorithm shown here.
The first code is simply the textbook approach, as described by Wolfram's page on LSF. The second ...
2
votes
3answers
602 views
Two stage least square in R
I want to run a two stage probit least square regression in R. Does anyone know how to do this? Is there any package out there? I know it's possible to do it using Stata, so I imagine it's possible to ...
1
vote
1answer
165 views
How can I perform a least-squares fitting over multiple data sets fast?
I am trying to make a gaussian fit over many data points. E.g. I have a 256 x 262144 array of data. Where the 256 points need to be fitted to a gaussian distribution, and I need 262144 of them.
...
1
vote
1answer
124 views
python scipy.optimize.leastsq jacobian estimation
I am using frequently scipy.optimize.leastsq() for my Ph.D thesis however I have no idea how can I get the estimate of a jacobian from the data that leastsq() returns. I need to know the estimate of a ...
1
vote
1answer
27 views
Finding degree in regression analysis
Umm.. Now quite sure whether this is the right place.
But I am working on a machine learning project..where I am trying to fit a curve in data.
Unfortunately the date has somewhat high feature vector.
...
1
vote
1answer
161 views
Fitting a 3d points of an arc to a circle (regression in Python)
I am relatively new to python. My problem is as follows
I have a set of noisy data points (x,y,z) on an arbitrary plane that forms a 2d arc.
I would like a best fit circle through these points and ...
1
vote
5answers
350 views
numpy: code to update least squares with more observations
I am looking for a numpy-based implementation of ordinary least squares that would allow the fit to be updated with more observations. Something along the lines of Applied Statistics algorithm AS 274 ...
1
vote
3answers
787 views
confidence interval with leastsq fit in scipy python
How to calculate confidence interval for the least square fit (scipy.optimize.leastsq) in python?
1
vote
2answers
593 views
fast & efficient least squares fit algorithm in C?
I am trying to implement a linear least squares fit onto 2 arrays of data: time vs amplitude. The only technique I know so far is to test all of the possible m and b points in (y = m*x+b) and then ...
1
vote
2answers
343 views
Problem with scipy.optimize.fmin_slsqp when using very large or very small numbers
Has anybody ever encountered problems with fmin_slsqp (or anything else in scipy.optimize) only when using very large or very small numbers?
I am working on some python code to take a grayscale image ...
1
vote
2answers
634 views
matlab - two variables least squares function approximation
I have a function of two variables of the type: y = f(x1,x2) to be approximated and I would like to use least squares method to do it.
Polyval and Polyfit work with two-dimensional function, here I ...
1
vote
1answer
106 views
Least squares problem
After collecting data for my model:
y = b(0) + b(1)x(1) + ... + b(i)x(i)
y = Xb in which y is a column vector (n*1), X is a matrix (n*m), and b (m*1).
I implemented a solution in python using ...
1
vote
2answers
182 views
Least squares optimal scaling
I have two waveforms which are linked by a numerical factor. I need to use optimal scaling (least squares) between the two waveforms to calculate this factor in Matlab. Unfortunately I have no idea ...
1
vote
2answers
1k views
How do I use the least squares approximation in MATLAB?
For a homework assignment in linear algebra, I have solved the following equation using MATLAB's \ operator (which is the recommended way of doing it):
A = [0.2 0.25; 0.4 0.5; 0.4 0.25];
y = [0.9 ...
0
votes
1answer
103 views
Which optimization algorithm does scipy.optimize.leastsq use?
Does anyone know which optimization algorithm specifically is implemented in scipy.optimize.leastsq?
0
votes
2answers
208 views
Least square method doesn't work as expected, or does it? [closed]
I tried to improve trilateration accuracy by doing least square method. For initial estimation, I get the average value of the cluster points. This value is then increased until the distance to the ...
0
votes
1answer
390 views
Multiple Regression
In order to combine 3 different estimators of the same variable I need to implement a multiple regression method in Java (therefore 3 independent variables and 1 dependent variable). I'm looking for a ...
0
votes
0answers
215 views
PQN-Non Negative Least Squares Algorithm
I'm trying to code up an implementation of the PQN-NNLS algorithm described on page 10 here in C#. I'm having trouble reading the pseudocode though, could anybody give me a hand and write it out in a ...
0
votes
1answer
258 views
least square means for dataset with missing data
I am writing for some help in R.
I am doing a simple RCBD analysis using the following script to
compare genotypes (Name)
for the trait "X".
library(stats)
data_1=read.table(file="test.txt", ...
0
votes
1answer
345 views
Levenberg–Marquardt (LMA) implementation in Java (to replace Python scipy.optimise.leastsq)
Please could someone suggest a good implementation of the Levenberg–Marquardt algorithm in Java? I prefer completeness and accuracy over performance.
Thanks.
0
votes
1answer
266 views
How can I solve a system of linear equations in Excel
I am having some trouble finding a solution for a system of equations using excel.
The system is of the form Ax=b, with A a matrix and x and b vectors. Obviously, the goal is to find x.
The system ...
0
votes
1answer
150 views
Least squares fit routine for timescaling in Matlab
I would like to know if there is a least squares routine in Matlab to scale a template signal to a measured signal in time. Let's say my template is a signal of approx. 1 second, but the corresponding ...