How to count alternating ones and zeros in a matrix

조회 수: 2 (최근 30일)
Awais Saeed
Awais Saeed 2021년 7월 14일
답변: Stephen23 2021년 7월 15일
Lets just say that I have a matrix v as following:
v =
0 0 0 0 0 0
1 1 0 1 1 0
1 0 1 0 1 0
0 0 1 0 1 0
0 0 0 1 1 1
I want to get rows where alternating ones and zeros are occuring which are 3rd and 4th rows. By alternating ones and zeros, I mean a sequence of [1 0 1 0] at least.
  댓글 수: 2
Walter Roberson
Walter Roberson 2021년 7월 14일
How about if a row ends with 0 1 0 1, is that also alternating 0 and 1, or does the sequence have to start with a 1?
Awais Saeed
Awais Saeed 2021년 7월 14일
Yes 0 1 0 1 would also be an alternating sequence.

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

채택된 답변

Devanuj Deka
Devanuj Deka 2021년 7월 14일
편집: Devanuj Deka 2021년 7월 14일
% Get the dimensions of 'v'
sz = size(v); % Gives two numbers. sz(1) is the number of rows; sz(2) is the number of columns
% Initialize a zero vector, having as many elements as the number of rows
% in v. After the code is run, the i'th element of this vector will be 1 if
% the i'th row of 'v' has an alternating pattern
rows = zeros(1,sz(1));
% Look for the pattern
for i=1:sz(1) % Iterating through rows
count = 0; % Count increments if the next element in the row is different
for j=1:sz(2)-1 % Iterating through the elements of each row
if v(i,j)~=v(i,j+1) % If current element and next element are unequal, increment count
count = count+1;
else % If next element is equal to the current element, count is reset
count = 0;
end
if count==3 % Minimum 3 changes back to back are required for your pattern (0->1->0->1, or 1->0->1->0)
rows(j) = 1; % If pattern detected in i'th row, row(i) is set to 1
break; % Since pattern detected, no need to look for more in the same row.
end
end
end
rows_with_pattern = find(rows); % A vector containing the rows which have the alternating pattern
find(X) gives the indices of non-zero elements in an array X, which is why we initialized rows as a vector of zeroes.
  댓글 수: 2
Awais Saeed
Awais Saeed 2021년 7월 15일
Thanks. That did the trick.
Devanuj Deka
Devanuj Deka 2021년 7월 15일
You're welcome!

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

추가 답변 (2개)

Matt J
Matt J 2021년 7월 14일
편집: Matt J 2021년 7월 14일
v =[
0 0 0 0 0 0
1 1 0 1 1 0
1 0 1 0 1 0
0 0 1 0 1 0
0 0 0 1 1 1];
A=v(:,1:end-3); B=v(:,2:end-2); C=v(:,3:end-1); D=v(:,4:end);
pattern1=A==0 & B==1 & C==0 & D==1;
pattern2=A==1 & B==0 & C==1 & D==0;
rows=find( any(pattern1|pattern2,2) )
rows = 2×1
3 4

Stephen23
Stephen23 2021년 7월 15일
v =[ 0 0 0 0 0 0; ...
1 1 0 1 1 0; ...
1 0 1 0 1 0; ...
0 0 1 0 1 0; ...
0 0 0 1 0 1; ... Walter Roberson's suggestion,
1 0 1 0 0 0; ... and reversed also.
0 1 0 1 0 1; ... Entire row alternating.
0 0 0 1 1 1];
X = any(diff(v,3,2)>3 | diff(~v,3,2)>3, 2)
X = 8×1 logical array
0 0 1 1 1 1 1 0

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by