Yes, just download YALMIP are you are almost ready to go. I tried using linprog as a lower bound LP solver here, but it doesn't work. It is not robust enough, so I recommend a better LP solver.
If you are in academia, I recommend you to install Gurobi, Cplex, Mosek or Xpress. They all have academic licenses (full versions free for academics). I used Gurobi here. (Mosek is problematic here since it overloads some fmincon stuff and thus we cannot use fmincon, but if you use ipopt instead as a nonlinear solver it works)
If you want to try another NLP solver than fmincon (which I used here), I recommend you to download the OPTI Toolbox. It comes with precompiled binaries for a large number of solver, such as the nonlinear solver IPOPT (which isn't any faster than fmincon on this small problem). OPTI Toolbox also comes with a range of LP solver. I tried to use them here and they do work, but some of them seem to be a bit shaky, and some work but run almost an order of magnitude slower than Gurobi, which makes the global search slow, as 50% of the time is spent in computing lower bounds using LPs.
Note though, this whole discussion is mainly relevant if you want to use the global solver. It looks like a local solver almost always returns the global solution anyway, so unless you want a guaranteed global solution, you can just use fmincon or ipopt directly. The reason is that the objective actually is convex. The last constraint is nonconvex, but maybe it is easy to show that you can relax the equality to an >=, which leads to a convex set. When I did this, the solution was still tight at the optima.