Ronan Fleming

  • Gurobi-versary
  • Conversationalist
  • First Question
  • Total activity 8
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 1

Posts

Recent activity by Ronan Fleming Recent activity Votes
  • Optimal objective from a simple QP problem:

    Answered

    % 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]'; %...