Genetic algorithm - changing only few arguments - errors
1 次查看(过去 30 天)
显示 更早的评论
I have to run the genetic algorithm by changing only C1,C2,C7 input arguments of the following function DL_Main_DPDPSCM
The remaining arguments are loaded through the file
data = load ('dpdpscm_data.mat');
function [ rho ] = DL_Main_DPDPSCM(x,C1,C2,C3,C4,C5,C6,C7,capae,capai,capaf,rti,rtp )
C1 = x(1);
C2 = x(2);
C7 = x(3);
I have written the fitness function as
fit = @(x) DL_Main_DPDPSCM(x);
[y,fval] = ga(fit,3);
It is showing errors in the user supplied fitness function.
where did i made the mistake and how to correct it
1 个评论
John D'Errico
2018-1-28
Please don't use the answers as a thread, so adding an answer for every comment made. I've moved your answer into a comment for you.
采纳的回答
Walter Roberson
2018-1-28
5 个评论
Walter Roberson
2018-1-29
We need the code for the function where the error message is generated and a copy of the complete error message.
Walter Roberson
2018-1-29
编辑:Walter Roberson
2018-1-29
Hold on.... Your C1 C2 C7 are all 3d arrays but in your objective function you replace all of those arrays with the scalar value x(1) or x(2) or x(3). You know the x values are individually scalar? If you want to tune the entire array C2 at one time you need to tell ga that the number of variables is at least as high as the number of elements needed to fill the matrix
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Genetic Algorithm 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!