Yes, it is obtained by using the lowrank option. It does not necessarily help much though, since the basic variable selection that is used often selects these variables anyway.
x = sdpvar(4,1);
y = sdpvar(20,1);
obj = sum(sum(randn(20,4).*(y*x')))
ops = sdpsettings('solver','bmibnb');
solvesdp([-1 <= [x;y] <= 1],obj,ops);
ops = sdpsettings('solver','bmibnb','bmibnb.lowrank',1);
solvesdp([-1 <= [x;y] <= 1],obj,ops)