필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

can any one give me an idea to solve a problem using genetic algorithm

조회 수: 1 (최근 30일)
Firas Al-Kharabsheh
Firas Al-Kharabsheh 2016년 4월 19일
마감: MATLAB Answer Bot 2021년 8월 20일
if i have a matrix
A = [ 1 0 1 1
0 1 0 0
1 1 0 0
1 0 0 1 ]
AND with some code i found these matrix
B = [ 1 2
1 0 which represent the number of group ones in rows of A
2 0
1 1 ]
C = [ 1 0 0 1 which represent the number of group ones in columns of A
2 2 1 1 ]
then how can i use the genetic algorithm if i give to the function A as input matrix to find solution that give Matrix A but after applied the Genetic Algorithm
WHERE THE fitness function is
S = (sum(sum(A ~= x)));
where A is Matrix and x is the population matrix

답변 (1개)

Walter Roberson
Walter Roberson 2016년 4월 19일
편집: Walter Roberson 2016년 4월 19일
Parameterize your function. Pass in A. For example,
A_fitness = @(x) (sum(sum(A ~= x)));
ga(A_fitness, .......)
I don't see why you don't just use A itself as the answer, since it is always going to have the lowest fitness under ~= .

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by