Problem regarding using fminunc
1 view (last 30 days)
Show older comments
I'm trying to minimize the spectral norm and run into this problem. How do I solve it?![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/144712/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/144712/image.png)
0 Comments
Accepted Answer
Star Strider
on 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 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!