Problem regarding using fminunc
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
christina
le 17 Jan 2019
Réponse apportée : Star Strider
le 17 Jan 2019
I'm trying to minimize the spectral norm and run into this problem. How do I solve it?
0 commentaires
Réponse acceptée
Star Strider
le 17 Jan 2019
One obvious approach is to use an options structure:
opts = optimoptions('fminunc', 'MaxFunctionEvaluations',1E+6);
x0 = ...;
x = fminunc(fun,x0,opts)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Solver Outputs and Iterative Display 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!