Info

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

Trouble replacing one matrix values with vector values.

조회 수: 1 (최근 30일)
Chameleon17
Chameleon17 2015년 10월 13일
마감: MATLAB Answer Bot 2021년 8월 20일
Good Morning,
I have a simple problem again, if anybody has any thoughts.
I keep getting an error in this bit of code but I've looked to see that the matrix and vectors are the same size, so i'm stuck as to how to get around it.
for i = 1:183
Day2(Day2(:,i) == 1) = D([1,i])
end In an assignment A(:) = B, the number of elements in A and B must be the same.
This is the error, but Day2 is 7 x 183 double and D is 1 x 183 double. I have tried to just pass one row of Day2 through at a time. When I can get it to run without the error I get returned back Day2 but it has not had any modifications the values from D I want to fit in have not been.
Any help or advice would be appreciated. I've been reading over all the indexing information but perhaps I'm missing what I should be looking at.
Thank you very much for any time, help and advice!

답변 (1개)

Walter Roberson
Walter Roberson 2015년 10월 13일
D([1,i]) refers to two locations. D(1,i) refer to a single location
  댓글 수: 5
Stephen23
Stephen23 2015년 10월 13일
What are you actually wanting to do? If you explain the goal of this then we can show you how it can be done neatly and efficiently. Loops are probably not an efficient solution.
Chameleon17
Chameleon17 2015년 10월 13일
Well, I've got matrices all the same length (183) but varying number of rows, for multiple areas across the UK, each row representing a different location within each area, each of the 183 columns is a day. I have a vector of dates (1x183) which I would like to input the value of each date into the matrix when I have presence of disease.
I've done it as such:
for n = 1:7
for i = 1:183
if Day3(n,i) == 1
Day3(n,i) = D(1,i)
Period = Day3
end
end
end
Is this considered messy?
I know I have to repeat it for each matrix, but I think I want to analyze everything separately so that is okay.

Community Treasure Hunt

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

Start Hunting!

Translated by