setting a vector sum as a lower and upper bound in fmincon
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I would like to set a constraint for the optimization problem to be solved by fmincon so that the vector, x, of solution values has values that sum between two scalar values. Is there a way to do this?
0 comentarios
Respuestas (1)
Titus Edelhofer
el 21 de Jul. de 2011
Hi,
yes there is: add to the matrix "A" (inequalities) two lines
A = [ones(1, length(x)); -ones(1, length(x))];
and for the right hand side take the upper and lower bound
b = [upperBound; -lowerBound];
Titus
0 comentarios
Ver también
Categorías
Más información sobre Nonlinear Optimization en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!