Filter löschen
Filter löschen

Problem regarding using fminunc

2 Ansichten (letzte 30 Tage)
christina
christina am 17 Jan. 2019
Beantwortet: Star Strider am 17 Jan. 2019
I'm trying to minimize the spectral norm and run into this problem. How do I solve it?

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by