Constraint definition among the variables for Genetic Algorithm (GA) Optimization

조회 수: 2 (최근 30일)
Hello Everyone,
I'm trying to use multiobjective genetic algorithm to identify various parameters for my models. I have a problem in defining the constraints between the variables. If v1,v2,v3 etc.,are the variables, then I want to define constraints like v1>v2>v3...
Could anyone help me out with this?
Thanks and Regards, Karthik

답변 (2개)

Alan Weiss
Alan Weiss 2011년 11월 30일
The syntax for gamultiobj includes linear inequality constraints: X = gamultiobj(FITNESSFCN,NVARS,A,b) If v is your vector of n decision variables, and you want v(1) > v(2), v(2) > v(3),...,v(n-1) > v(n), set your A matrix as
v = zeros(1,n);
v(1) = -1;v(2) = 1;
A = gallery('circul',v);
A(n,:) = [];
b = zeros(n-1,1);

Karthik  Vemireddy
Karthik Vemireddy 2011년 12월 2일
Thank you Alan.....
Meanwhile I have found another simpler solution. It's described in the following link in detail...

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by