Quantcast
Channel: MATLAB Central - File Exchange - tag:"least squares"
Viewing all articles
Browse latest Browse all 522

LSE

$
0
0
138352010-06-30T08:28:42Z2010-06-30T08:28:42Z

This submission was written by request - as a tool to handle linear least squares problems, subject to linear equality constraints that may potentially be rank deficient. (It handles problems with full rank constraints of course too.) In the event of a rank deficient constraint system, it tests for consistency of the constraints.I added a few other features to LSE:- It allows multiple right hand sides to the least squares problem, fully vectorized of course.- Weights may be supplied.- You are offered a choice of least squares solvers, either backslash or pinv.LSE solves the problem (for an unknown vector x) argmin norm(A*x - b)subject to the constraints C*x = dAs an example, consider the random systemA = rand(10,3);b = rand(10,1);With a rank deficient constraint setC = [1 1 1;1 1 1];d = [1;1];X = lse(A,b,C,d)X = 0.5107 0.57451 -0.085212Verify that the constraints are satisfiedC*Xans = 1 1Column pivoting is used to eliminate variables from the constraint system when \ is specified, and when pinv is specified, an svd is used for the final solution.


Viewing all articles
Browse latest Browse all 522

Trending Articles