Problem regarding using fminunc

I'm trying to minimize the spectral norm and run into this problem. How do I solve it?

 Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Productos

Versión

R2018a

Etiquetas

Preguntada:

el 17 de En. de 2019

Respondida:

el 17 de En. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by