Problem regarding using fminunc

1 visualizzazione (ultimi 30 giorni)
christina
christina il 17 Gen 2019
Risposto: Star Strider il 17 Gen 2019
I'm trying to minimize the spectral norm and run into this problem. How do I solve it?

Risposta accettata

Star Strider
Star Strider il 17 Gen 2019
One obvious approach is to use an options structure:
opts = optimoptions('fminunc', 'MaxFunctionEvaluations',1E+6);
x0 = ...;
x = fminunc(fun,x0,opts)

Più risposte (0)

Tag

Prodotti


Release

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by