필터 지우기
필터 지우기

Problem regarding using fminunc

조회 수: 1 (최근 30일)
christina
christina 2019년 1월 17일
답변: Star Strider 2019년 1월 17일
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