Rows columns (nodes) that do not meet fmincon constraints

How can we output to the screen the columns that are unable to meet the constraints of fmincon, using "disp()"?

Answers (1)

Just evaluate the constraints manually to see which are not satisfied
>> A*x-b>options.TolCon,
>> abs(Aeq*x-beq)>options.TolCon
You could also use disp, but I don't see why you'd prefer it,
>> disp( A*x-b>options.TolCon )

This question is closed.

Asked:

on 1 Jun 2014

Closed:

on 20 Aug 2021

Community Treasure Hunt

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

Start Hunting!