Non linear least square function lsqnonlin
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I was wondering if there is a way to stop the lsqnonlin function before converge to the optimal solution.
0 commentaires
Réponses (1)
Matt J
le 23 Avr 2018
Modifié(e) : Matt J
le 23 Avr 2018
You can apply your own stopping criterion in any of the Optimization Toolbox solvers using the OutputFcn option, e.g.,
options = optimoptions(@lsqnonlin,'OutputFcn',@myFunction)
Similarly, you could limit the number of iterations to some desired maximum if that's what you're trying to do.
options = optimoptions(@lsqnonlin,'MaxIter',Nmax)
0 commentaires
Voir également
Catégories
En savoir plus sur Problem-Based Optimization Setup dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!