How to impose multiple inequality constraints on fmincon?

5 次查看(过去 30 天)
How should I provide two inequality constraints as:
A1*x < b1
A2*x < b2
where the syntax is like this:
x = fmincon(fun,x0,A,b,Aeq,beq,lb,ub,nonlcon,options)
My mathematical constraint is this, actually:
-B < x(i+1)-x(i) < B

采纳的回答

Titus Edelhofer
Titus Edelhofer 2012-9-13
Hi,
for the left hand side, you multiply by -1, i.e.,
-x(i+1) + x(i) <= B
And combining is easy:
A = [A1; A2];
b = [b1; b2];
Titus

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Nonlinear Optimization 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by