genetic algorithm - fitness function - algorithm not converging
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Kallam Haranadha Reddy
am 17 Sep. 2017
Beantwortet: Walter Roberson
am 17 Sep. 2017
I want to apply genetic algorithm for a 150 variable linear programming problem.
I wrote the fitness function 'fit1.m' as follows.
The Cost coefficients of the objective function are saved in DPDPSCM.mat file.
function [ obj ] = fit1( C,X )
load DPDPSCM.mat
C;
X = randi([1,10],1,150)
y = C.*X;
obj = sum(y);
end
The genetic algorithm is not converging.
where did i made the mistake.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 17 Sep. 2017
datastruct = load('DPDPSCM.mat');
C = datastruct.C;
fun = @(x) sum(C.*x);
bestx = ga(fun, 150);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Genetic Algorithm finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!