| MATLAB Function Reference | Search  Help Desk |
| nnls | Examples See Also |
NOTE
The name of this function has been changed to lsqnonneg in Release 11 (MATLAB 5.3). While nnls is supported in Release 11, it will be removed in a future release so please begin using lsqnonneg.
Syntax
x=nnls(A,b) x=nnls(A,b,tol) [x,w]=nnls(A,b) [x,w]=nnls(A,b,tol)
Description
x = nnls(A,b)
solves the system of equations
in a least squares sense, subject to the constraint that the solution vector x has nonnegative elements: 
x minimizes
subject to
.
x = nnls(A,b,tol)
solves the system of equations, and specifies a tolerance tol. By default, tol is: max(size(A))*norm(A,1)*eps.
[x,w] = nnls(A,b)
also returns the dual vector w, where 

[x,w] = nnls(A,b,tol)
solves the system of equations, returns the dual vector w, and specifies a tolerance tol.
Examples
Compare the unconstrained least squares solution to thennls solution for a 4-by-2 problem:
A =0.03720.28690.68610.70710.62330.62450.63440.6170 b =0.85870.17810.07470.8405 [A\bnnls(A,b)]= -2.562703.11080.6929
[norm(A*(a\b)-b)The solution fromnorm(A*nnls(a,b)-b)]=0.66740.9118
nnls does not fit as well, but has no negative components.
Algorithm
Thennls function uses the algorithm described in [1], Chapter 23. The algorithm starts with a set of possible basis vectors, computes the associated dual vector w, and selects the basis vector corresponding to the maximum value in w to swap out of the basis in exchange for another possible candidate, until w
0.
See Also
\ Matrix left division (backslash)
References
[1] Lawson, C. L. and R. J. Hanson, Solving Least Squares Problems, Prentice-Hall, 1974, Chapter 23.