
Haury Miao
- 合計アクティビティ 3
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 1
アクティビティの概要
Haury Miaoさんの最近のアクティビティ-
Haury Miaoさんがコメントを作成しました:
So it is because I forget to add the LB and UB in the definition of the decision variable x?
-
Haury Miaoさんが投稿を作成しました:
Quadratic Programming (QP)with gurobipy,why the answer is wrong?
回答済みimport gurobipy as gpfrom gurobipy import *import numpy as npa = np.array([-1,-1,-1,-1])b = np.array([1, 1, 1, 1])c = np.array([1, 1, 1, 1])model = gp.Model()x = model.addMVar(4, vtype=GRB.CONTINUO...