How do i count same consecutive occurrences

56 ビュー (過去 30 日間)
DuckDuck
DuckDuck 2018 年 10 月 23 日
コメント済み: Bruno Luong 2021 年 12 月 16 日
Consider I have an array of occurrences
A=[1,1,1,1,1,2,2,2,2,3,3,3,3,2,2,2,1,1,1,1]
I want to find out how many 2 are on each occurrence. The answer should be 4 starting 6th position and 3 starting 14 positions.
Is it possible to do it in a wise Matlab way without many loop complications?

回答 (3 件)

madhan ravi
madhan ravi 2018 年 10 月 23 日
編集済み: madhan ravi 2018 年 10 月 23 日

Daniel Pare
Daniel Pare 2019 年 11 月 5 日
I wanted to count how many time in a row Head or Tail will occure from a random draw and I came up with this.
Let (x) be your vector of observation like x = [1 1 0 1 0 0 0 1]
The result will be: s = [ 2 1 1 3 1]
s=0 ;
j=2;
i=1;
while i < nb_it+1
c=1;
if i == nb_it
s = [ s c];
break
else
while x(i) == x(i+1)
c = c+1;
i = i+1;
if i == nb_it
break
end
end
end
s = [ s c];
i = i+1;
end
s = s(2:end); % to remove the first zero
sum(s) % the sum should be equal to the number of element in (x)
max(s) % This is the maximum of consecutive ocurence from the draw
  5 件のコメント
giannit
giannit 2020 年 4 月 23 日
That one line command is amazing, many thanks!
gummiyummi
gummiyummi 2020 年 8 月 3 日
I get an error: Error using horzcat. Dimensions of arrays being concatenated are not consistent.
Can anybody help resolve this?

サインインしてコメントする。


Bruno Luong
Bruno Luong 2020 年 8 月 3 日
編集済み: Bruno Luong 2021 年 12 月 16 日
Example:
A=[1,1,1,1,1,2,2,2,2,3,3,3,3,2,2,2,1,1,1,1]
Code
d = diff([0, A==2, 0]);
startidx = find(d==1)
lgt = find(d==-1)-startidx % EDIT error
Result
startidx =
6 14
lgt =
4 3
  4 件のコメント
Ayush Meena
Ayush Meena 2021 年 12 月 15 日
@Bruno can you please tell me what is idx here?
Bruno Luong
Bruno Luong 2021 年 12 月 16 日
@Ayush Meena it's a typo, should be startidx.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by