GA multi-objective optmization
I’m impelementing GA using matlab optimization toolbox.
I have 6 Variables which one them only accepts integer values. I read the optimization options but I couldn’t find a solution for my problem. I would appreciate your help.
FitnessFunction = @objFuns;
numberOfVariables = 6;
options = optimoptions(‘gamultiobj’);
LB = [2 4 55 38 1 1.8];
UB = [25 10 70 49 6 4];
A = []; % No linear inequality constraints
b = []; % No linear inequality constraints
Aeq = []; % No linear equality constraints
beq = []; % No linear equality constraints
[x,Fval,exitFlag,Output] = gamultiobj(FitnessFunction,numberOfVariables,…
A,b,Aeq,beq,…
LB,UB,[],options);I’m impelementing GA using matlab optimization toolbox.
I have 6 Variables which one them only accepts integer values. I read the optimization options but I couldn’t find a solution for my problem. I would appreciate your help.
FitnessFunction = @objFuns;
numberOfVariables = 6;
options = optimoptions(‘gamultiobj’);
LB = [2 4 55 38 1 1.8];
UB = [25 10 70 49 6 4];
A = []; % No linear inequality constraints
b = []; % No linear inequality constraints
Aeq = []; % No linear equality constraints
beq = []; % No linear equality constraints
[x,Fval,exitFlag,Output] = gamultiobj(FitnessFunction,numberOfVariables,…
A,b,Aeq,beq,…
LB,UB,[],options); I’m impelementing GA using matlab optimization toolbox.
I have 6 Variables which one them only accepts integer values. I read the optimization options but I couldn’t find a solution for my problem. I would appreciate your help.
FitnessFunction = @objFuns;
numberOfVariables = 6;
options = optimoptions(‘gamultiobj’);
LB = [2 4 55 38 1 1.8];
UB = [25 10 70 49 6 4];
A = []; % No linear inequality constraints
b = []; % No linear inequality constraints
Aeq = []; % No linear equality constraints
beq = []; % No linear equality constraints
[x,Fval,exitFlag,Output] = gamultiobj(FitnessFunction,numberOfVariables,…
A,b,Aeq,beq,…
LB,UB,[],options); ga, optimization MATLAB Answers — New Questions