How to make a loop through each row?

Hi! I have a variable A in the size of 50x15000 with different numbers. And I have variable B, the same size 50x15000, that has only zeros and ones. I want to filter the data in the variable A based on variable B, and put the result in variable C. I need to take the numbers from A only if it is zero in the matrix B. One row is one trial in both A and B.
I wrote a small for loop:
C = NaN(size(A));
for i = 1:size(A,1)
C(i,:) = A(i, B(i,:) == 0);
end
The problem is that, after filtering the data, each row has different number of columns, so it doesn't want to be in one matrix. I have a message like this: "Unable to perform assignment because the size of the left side is 1-by-15000 and the size of the right side is 1-by-13683".
How can I solve this problem?
Thank you!

댓글 수: 2

Stephen23
Stephen23 2020년 10월 21일
"How can I solve this problem?"
Which would you prefer?:
  • a matrix padded with NaN (or some other value).
  • a container array (e.g. cell array) of vectors.
Daria Ivanchenko
Daria Ivanchenko 2020년 10월 21일
A matrix padded with NaN would be better!

댓글을 달려면 로그인하십시오.

답변 (1개)

David Hill
David Hill 2020년 10월 21일
편집: David Hill 2020년 10월 21일

0 개 추천

Make C a cell array
for i = 1:size(A,1)
C{i} = A(i, B(i,:) == 0);
end

댓글 수: 2

Daria Ivanchenko
Daria Ivanchenko 2020년 10월 21일
Yes, this works, thanks, but it is really necessary for me to have all in one matrix and not in differents cells.
C=zeros(size(A));
C(B==0)=A(B==0);
C(B==1)=nan;

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

질문:

2020년 10월 21일

댓글:

2020년 10월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by