lsqnonneg function without constraints

1 次查看(过去 30 天)
lsqnonneg function of MATLAB helps to find value of x that minimizes norm of|C*x - d| subject to x >= 0. However, I want to find value of x that minimizes norm of|C*x - d| without any constraints. Is there some function in MATLAB to do so?

采纳的回答

John D'Errico
John D'Errico 2015-11-12
Um, zillions of them?
lsqcov, regress, fit, lsqlin, lsqr, and that ignores all the nonlinear iterative solvers.
Turns out the most trivial, is just
x = C\d;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Linear Least Squares 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by