Count conservative occurrences of zeros and if zero appeared for defined number of times it should be changed.

조회 수: 1 (최근 30일)
Hello,
There is an array A size (NxM), each column represents when a signal was created. I need to close that signal if certain time it was not created again and assign -1 value. For example like this:
1 0 1 0 1
0 1 0 1 0
0 0 1 0 0
1 0 0 1 1
0 0 1 1 0
0 1 0 0 0
I need to count consecutive occurrences of zero column-vise, and if zero occurred for defined number of times for example two, it should be changed to -1 and output should look like this:
1 0 1 0 1
0 1 0 1 0
-1 0 1 0 -1
1 -1 0 1 1
0 0 1 1 0
-1 1 0 0 -1
Count conservative occurrences of zeros and if zero appeared for defined number of times it should be changed.
  댓글 수: 1
Jan
Jan 2018년 7월 8일
편집: Jan 2018년 7월 8일
I assume you mean "consecutive" instead of "conservative". What is the wanted output for:
x1 = [0; 0; 1]
x2 = [1; 0; 0; 0; 0]

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

채택된 답변

Jan
Jan 2018년 7월 8일
편집: Jan 2018년 7월 8일
If you want to replace the 2nd element after a 1 by -1, if it was a 0 before:
A = double(rand(10, 5) < 0.3); % Some test data
n = 2;
pattern = [1, zeros(1, n)];
for k = 1:size(A, 2)
index = strfind(A(:, k).', pattern);
A(index + n, k) = -1;
end
  댓글 수: 7
Jan
Jan 2018년 7월 9일
@Mantas Vaitonis: strfind is not implemented for GPUs. If you have a C compiler installed, I'd suggest to try the MEX function. Which OS do you use? Can you work with UINT8 instead of DOUBLEs?
Mantas Vaitonis
Mantas Vaitonis 2018년 7월 9일
@Jan, I am using WIN 10 64BIT, yes it would be possible to use UNIT8 instead of double, becasue this varibale valeus are 1, 0 or -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