Yannic Lieder
- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 2
Posts
Votes on activity by Yannic Lieder-
Theoretical Background on BarHomogeneous parameter
AnsweredWe are currently writing on a paper in which we use Gurobi for optimization tasks. There is one QP that could not be solved with default parameters, failed with Numerical trouble encounteredModel m...
-
Solving Least Squares yields wrong result
AnsweredI tried to solve a linear least square problem in Gurobi as follows: # A, b are numpy arraysn1, n2 = A.shape # shape of b is (n1,)m = gp.Model()x = m.addMVar(shape=n2, lb=float('-inf'))Q = A.T @ Ac...