How to write anonymous funtion to solve with lsqnonlin
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Kothapelli Chandar
am 10 Dez. 2015
Kommentiert: Torsten
am 11 Dez. 2015
f(x) = f1(x)^2+f2(x)^2+...+fn(x)^2 + lambda*norm(x)
0 Kommentare
Akzeptierte Antwort
Torsten
am 10 Dez. 2015
function F = myfun(x)
F(1) = f1(x);
F(2) = f2(x);
...
F(n) = fn(x);
The constant L can be omitted since it does not influence the optimal x.
Best wishes
Torsten.
2 Kommentare
Torsten
am 11 Dez. 2015
Then use an (n+1)-th function f_(n+1)(x)=sqrt(L) if L is positive.
Best wishes
Torsten.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Linear Least Squares finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!