How can i count how many time a number appears and for how long in a vector?

조회 수: 2 (최근 30일)
I have a vector like this
v=[+1 +1 +1 0 0 0 +1 +1 -1 -1 +1 0 0 -1 -1 +1 +1]
I want to count how many times each number appears and for how long. i mean, for example let's consider +1. it appears indivigually only 1 time, then it appears in couple 2 times, then it appear in triplet only 1 time and so on. Could someone help me? thank you!

채택된 답변

Jan
Jan 2021년 1월 20일
편집: Jan 2021년 1월 20일
Start with a run-length-encoding, e.g. by FileExchange: RunLength . If you do not have a C-Compiler installed, use RunLength_M of this submission. Then:
v = [+1 +1 +1 0 0 0 +1 +1 -1 -1 +1 0 0 -1 -1 +1 +1];
[Num, Len] = RunLength_M(v)
Now you have the values and the lengths of the repetitions. Nur you can use histcounts to count, how often each sequence appears. If this is not time-ciritical, a simple loop does it also:
uniqNum = unique(Num);
for aNum = uniqNum(:).'
fprintf('Number: %d\n', aNum);
LenList = Len(Num == aNum);
uniqLenList = unique(LenList);
for aLen = uniqLenList(:)'
fprintf(' Block length: %d', aLen);
fprintf(' : %d times.\n', sum(LenList == aLen));
end
end
  댓글 수: 5
Jan
Jan 2021년 1월 21일
I do not reliably recognize the relation between the inputs and outputs.
salvatore vergine
salvatore vergine 2021년 1월 21일
I try to explain it better. In each vector each column represents a pattern. For example, let s consider the number 1 and the input vector [0 1 1 2 1 1 1]. The result is the vector v1=[0 1 1 0 0 0 0] in which column 1 indicates how many times number 1 appears individually in the input vector (zero times in this case). Column 2 indicates how many times number 1 appears coupled in the input vector (only 1 as you can see). Column 3 indicates how many times number 1 appears as a triplet (only 1 too) and so on.
Another example with the input vector [0 1 1 0 1 1 0 1 2]. In this case the outpur vectors are:
v0=[3 0 0 0 0 0 0 0 0]
v1=[1 2 0 0 0 0 0 0 0]
v2=[1 0 0 0 0 0 0 0 0]
I hope I expressed myself better.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Clocks and Timers에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by