Removing consecutive zeros of a certain length

5 vues (au cours des 30 derniers jours)
Debbie Oomen
Debbie Oomen le 9 Mai 2018
Modifié(e) : Stephen23 le 9 Mai 2018
Hi everyone,
I have data consisting of two columns: time and counts. The counts data consists of multiple numbers with some consecutive zeros. How can Matlab find and count the duration of these consecutive zeros and then delete the rows of them if the duration is above a certain value?

Réponse acceptée

KSSV
KSSV le 9 Mai 2018
Modifié(e) : KSSV le 9 Mai 2018
x = [0 0 0 2 2 0 0 0 3 3 3 3 3 0 0 0 0 ]' ;
transitions = diff([0 ;x == 0; 0]); %find where the array goes from non-zero to zero and vice versa
runstarts = find(transitions == 1);
runends = find(transitions == -1); %one past the end
runlengths = runends - runstarts;
% keep only those runs of length 4 or more:
runstarts(runlengths > 3) = [];
runends(runlengths > 3) = [];
%expand each run into a list indices:
indices = arrayfun(@(s, e) s:e-1, runstarts, runends, 'UniformOutput', false);
indices = [indices{:}]; %concatenate the list of indices into one vector
% Remove those zeros which are consecuitve 3 in number
x(indices) = [] ;
  5 commentaires
Stephen23
Stephen23 le 9 Mai 2018
You need to use the indices as row subscripts:
Data(indices,:) = [];
Debbie Oomen
Debbie Oomen le 9 Mai 2018
Modifié(e) : Stephen23 le 9 Mai 2018
Thank you! This works perfectly

Connectez-vous pour commenter.

Plus de réponses (1)

Jan
Jan le 9 Mai 2018
Modifié(e) : Jan le 9 Mai 2018
What is the "duration"? The number of consecutive elements or does the "time" in the first column matter?
[B, N] = RunLength(Data(:, 2));
match = (B ~= 0 | N < 3);
index = RunLength(match, N);
Data2 = Data(index, :);
This removes all rows, if the number of consecutive zeros in the 2nd column is greater equal 3.
If you do not have a C-compiler installed, use RunLength_M() instead or RunLength() from the same submission. It does exactly the same as the faster C-Mex, but as slower Matlab code.

Catégories

En savoir plus sur Cell Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by