Matlab Arrays not populating correctly

조회 수: 4 (최근 30일)
Cathal White
Cathal White 2020년 11월 4일
편집: Cris LaPierre 2020년 11월 4일
Hi all, I'm getting a problem with MATLAB where the values being inserted into a vector are appearing as [] instead of [rand, 0].
This is my code:
M = 10; %no of chromosomes (candidate solutions)
N = 2; %no of genes
for k = 1 : M
population.Chromosomes(M).Gene(:) = [rand, 0];
population.Chromosomes(k).fitness = fitnessFunction(population.Chromosomes(M).Gene(:) );
end
The matrix population.Chromosomes should show all the values in the gene column as [0.8344,0] for example, and I'm sure these cells have values as the fitness vector has a value.

채택된 답변

Cris LaPierre
Cris LaPierre 2020년 11월 4일
편집: Cris LaPierre 2020년 11월 4일
Your code is telling it to assign [rand,0] to gene(M). This means that it will always assign the value to the 10th row, which is what it looks like it is doing. You are assigning correctly for fitness, and you can see the values of Gene change each time since the values for fitness are different in every row.
Did you mean to use k instead?
M = 10; %no of chromosomes (candidate solutions)
for k = 1 : M
population.Chromosomes(k).Gene = [rand, 0];
end
And now to visualize the results.
population.Chromosomes.Gene
ans = 1×2
0.8894 0
ans = 1×2
0.4122 0
ans = 1×2
0.4319 0
ans = 1×2
0.8130 0
ans = 1×2
0.4936 0
ans = 1×2
0.8817 0
ans = 1×2
0.8535 0
ans = 1×2
0.0575 0
ans = 1×2
0.7653 0
ans = 1×2
0.5670 0

추가 답변 (1개)

dpb
dpb 2020년 11월 4일
You've got a typo...
population.Chromosomes(M).Gene(:) = [rand, 0];
is writing into the location M(=10) every time.

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by