How to represent a system of quadratic equations in matrix form

620 Views Asked by At

Suppose I have two quadratic equation like the following:

  1. $2x^2 - 3x + 2$
  2. $x^2 + 5x + 6$

I want to find the minimum values of these equation with the constraint that:

$-3 \lt x \lt 5$

How represent these situations in a matrix format? Actually I am trying to use matlab cvx, where I assume these are needed.

Thanks.