フィルターのクリア

non linear optimization returns a "Too many output arguments."

1 回表示 (過去 30 日間)
Amani mahdy
Amani mahdy 2016 年 8 月 17 日
コメント済み: Matt J 2016 年 8 月 17 日
Hello all,
I am using the genetic algorithm to solve a MINL problem, I am calling the non-linear-constraints as:
nonlcon = @non_linear_constraint_all_ga;
I have around 60 constraints, so nonlcon supposes to be a vector of 60 elements..
the called function is as follows :
function c1=non_linear_constraint_all_ga(x)
[~ ,c1,~]=objective_finction_and_non_linear_contsrains_ga(x);
end
i am taking only the second output from the BIG function "objective_finction_and_non_linear_contsrains_ga"
function [y ,c1,ceq1]=objective_finction_and_non_linear_contsrains_ga(x)
for (j=1 :Ns+2:(2+Ns)*Nc)
for (i=0:Ns-1)
k=i+1;
c1(1,m) = x(1,j+2+i).*sqrt(w((i+k),1)-x(1,j));
m=m+1;
end
end
end
I keep getting the following error :
Too many output arguments.
Caused by:
Failure in initial user-supplied nonlinear constraint function evaluation.
Any idea ?
best regards,

採用された回答

Matt J
Matt J 2016 年 8 月 17 日
編集済み: Matt J 2016 年 8 月 17 日
The nonlinear constraint function must be equipped to return 2 arguments if requested, one for inequality and one for equality constraints.
function [c1,ceq1]=non_linear_constraint_all_ga(x)
[~ ,c1,ceq1]=objective_finction_and_non_linear_contsrains_ga(x);
end
  2 件のコメント
Amani mahdy
Amani mahdy 2016 年 8 月 17 日
Thank you so much, IT WORKS =D
but at the end, nonlcon will equal to c1 since it is the first output , isnt it ?
Matt J
Matt J 2016 年 8 月 17 日
No, ga will always request both c1 and ceq1 as outputs. However, if it sees that ceq1 is empty, it will realize that you have no equality constraints.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSolver Outputs and Iterative Display についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by