Problem with fmincon:row dimension of Aeq must have 4 column(s).

1 次查看(过去 30 天)
% non linear constraints:
% D is a matrix 69x69
for h=linspace(h_min,h_max,69)
x=zeros(69,69);
c=h-x(1)'*D*x(2);
end
function [c,ceq]= contr (x)
ceq=[];
c=c;
end
f=@(x)x(1)'*sigma*x(2); %sigma is a a matrix(69x69)
nonlcon=@contr;
Aeq=ones(1,N);
beq=1;
l_b=[];
u_b=[];
x0=zeros(n,1);
A=[];
b=[];
sigma_2rao = zeros(1,length(h));
sigma_2rao(1)=var_min;
[x_rao(:,i),sigma_2rao(i)] = fmincon(f,x0,A,b,Aeq,beq,l_b,u_b,nonlcon)

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Quadratic Programming and Cone Programming 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by