python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Doesn't respect limit conditions in scipy.optimize
Nonlinear Programming with Inequality Constraints
==============
Imagine that you work out in a factory that produces some kind of composite products.
Each product has its own composition of parts.
So...
Dmitrij
Votes: 0
Answers: 1
cvxpy: Possible sign flip for Lagrange Multiplier/dual variable
I have encountered a very strange problem when using cvxpy. Consider the following two problems:
x = cvx.Variable(1, "x")
obj = cvx.Minimize(x)
cons = [x==1]
prob = cvx.Problem(obj, cons)
pr...
Tom Bennett
Votes: 0
Answers: 0
cvxpy - How to obtain the variable value after each iteration?
I am using cvxpy to solve a second order cone program. I have used the boilerplate code as mentioned in the cvxpy website - cvxpy SOCP webpage. I do not know how to obtain the variable value after eac...
Anirudh Ramesh
Votes: 0
Answers: 0
cvxpy not allowing item assignment for MulExpression
I have a sparse matrix operation as part of the optimization constraint. I can implement the program in Matlab cvx, now I am trying to implement a cvxpy version. The problem is following constraint:
N...
z1w
Votes: 0
Answers: 1