- Iterations and Function Counts
- Nonlinear constraint violations are the maximum of your nonlinear inequality constraint functions c(x), your nonlinear equality constraint functions |ceq(x)|, and your linear constraints A*x-b and |Aeq*x - beq|. The meaning of your positive value is that some of your constraints are not satisfied at the returned solution x.
- That is up to you. You know that the constraints are not satisfied. Does that matter to you? If this problem is the same as that posted in another thread, then your output function stopped the optimization before fmincon reached what it considers to be a good solution.
What do the fields in the output structure of fmincon mean?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Viswanath Hariharan
el 27 de Jun. de 2018
Comentada: Walter Roberson
el 1 de Jul. de 2018
When we solve an optimization problem and obtain the output structure, it has fields such as funcCount, constrviolation, stepsize, firstorderopt etc.
According to the documentation, funcCount means function evaluations.
1. What is the difference between iterations and funcCount?
According to the documentation, constrviolations means maximum of constraint functions.
2. What does it mean to say maximum of constraint functions? In my problem, output.constrviolations = 0.1956. What does this mean?
3. How do I use these values to analyze quality of solution?
0 comentarios
Respuesta aceptada
Alan Weiss
el 27 de Jun. de 2018
Alan Weiss
MATLAB mathematical toolbox documentation
2 comentarios
Walter Roberson
el 1 de Jul. de 2018
"The condition states that c(x) <= 0 so wont it always ensure a value less than 0"
No, to account for floating point round off, it accepts c(x) <= tolerance
Más respuestas (0)
Ver también
Categorías
Más información sobre Nonlinear Optimization en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!