fmincon computes all the outputs even with a failed step.
1 次查看(过去 30 天)
显示 更早的评论
I have an objective function which I am trying to minimize. And I supply the gradient and Hessian along with my objective function. My function looks like
[f,g,h] = myfunc(x);
f = ...;
if nargout>1, g = ...; end
if nargout>2, h = ...; end
fprintf('%d\n',nargout); % I Want to see what outputs fmincon is asking for.
Initially, all the three (f,g,h) are computed as nargout = 3. After the step is calculated,i.e., during 2nd iteration, nargout is still 3 even though I see that the step is a failed step. That is f doesn't decrease using the correction but fmincon still asks to compute gradient and Hessian at this new value of x. Isn't this waste of time(as this value of x is rejected)? (Or) Is it possible to put a condition that gradient and Hessian should be computed only after the correction/step is valid?
Options I use are: Trust-region-reflective algorithm, with 'x' being constrained between some fixed bounds, on matlab2013b. And
options.GradObj = 'on'; options.Hessian = 'on';
0 个评论
回答(1 个)
Pritesh Shah
2016-10-12
Hi,
First thing, there should be only one output value from your objective function for single objective function. https://in.mathworks.com/products/optimization/features.html#defining-and-solving-optimization-problems
3 个评论
Walter Roberson
2016-10-12
Note: for trust-region-reflective, using option 'Hessian', 'on' requires that the third output of the objective function is the estimated hessian. trust-region-reflective always requires that the second output of the objective function is the gradient (that is, if you do not turn on the GradObj option then it will refuse to use trust-region-reflective)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!