Hello,
I’m trying to implement a simple quadratic optimisation my lecturer set me and there is an issue with my system which has completely stumped him so I would appreciate any assistance this forum can offer.
I am trying to implement this system:
This is my MATLAB (run with R2020b) code:
% Solving Least Squares Problem
clear all;
clc;
% Generate data
n = 10;
m = n;
P = randn(n);
P = P*P’;
q = randn(n,1);
r = randn;
G = randn(m,n);
h = randn(m,1);
A = randn(n,n);
b = randn(n,1);
% Create and solve problem
cvx_begin
variable x(n)
dual variables y1 y2
minimize(0.5x’Px + q’x +r)
subject to
y1 : Gx <= h;
y2 : Ax == b;
cvx_end
x
This is the error I’m getting:
Check for missing argument or incorrect argument data type in call to function ‘vec’.
Error in cvx/quad_form (line 43)
v = vec( v );
Error in * (line 261)
[ z2, success ] = quad_form( xx, P, Q, R );
Error in Quadratic_Problem (line 46)
minimize( 0.5*x’Px + q’*x + r );
I have installed CVX correctly as it runs for a least squares example program. However, it is highlighting that there is something wrong in the vec() function.
I would appreciate any guidance/support you can offer and if you need anymore information then please tell me and I’ll make sure to add it to the original post.
Josh