Ronan Fleming
- 合計アクティビティ 8
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 1
投稿
Ronan Flemingによる最近のアクティビティ-
Optimal objective from a simple QP problem:
回答済み% set up QP problemQPproblem.Q = [8, 1; 1, 8]; QPproblem.c = [3, -4]'; QPproblem.A = [1, 1; 1, -1]; QPproblem.b = [5, 0]';QPproblem.lb = [0, 0]';QPproblem.ub = [inf, inf]';QPproblem.x0 = [0, 1]'; %...