Gang Wu
- 合計アクティビティ 4
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 1
アクティビティの概要
Gang Wuさんの最近のアクティビティ-
Gang Wuさんがコメントを作成しました:
I already set the solver to be 'nonconvex' by m.setParam("NonConvex", 2)
-
Gang Wuさんがコメントを作成しました:
Thank you for your response! My case is a non-convex optimization case. A sample coefficient is in the link https://drive.google.com/open?id=16v7_iQn3sVGumuIl9wsr0E3Nz3eC2SN3zUa_DBLW1Pg
-
Gang Wuさんが投稿を作成しました:
difference between Gurobi solution and Python Scipy nnls solution for non-negative least square problem
solve the non-negative least square problem argmin_x || Ax - b ||_2 for x>=0 for python solution, simply call nnls function as r,s= nnls(A, B); for Gurobi solution, define as A_dot_A = A.T.dot(A)...