Could I write constraints like YALMIP in Matlab (A*x<=b) with PuLP? #566
Unanswered
a280558071
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There's a famous optimization tool named YALMIP in Matlab, which supports constraints modeling as:
A=[1,2;3,4]; b=[5;6]; x=sdpvar(2,1); Cons=[A*x<=b];
Now that Python also has NumPy and PuLP, is it possible to model constraints as above?
Beta Was this translation helpful? Give feedback.
All reactions