Problem regarding using fminunc

1 次查看(过去 30 天)
I'm trying to minimize the spectral norm and run into this problem. How do I solve it?

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by