Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Rows columns (nodes) that do not meet fmincon constraints

1 visualizzazione (ultimi 30 giorni)
Sameer
Sameer il 1 Giu 2014
Chiuso: MATLAB Answer Bot il 20 Ago 2021
How can we output to the screen the columns that are unable to meet the constraints of fmincon, using "disp()"?

Risposte (1)

Matt J
Matt J il 2 Giu 2014
Modificato: Matt J il 2 Giu 2014
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 )

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by