How Can i sum same values in an arry untill it change to a diffrent number and sum these aswell

1 回表示 (過去 30 日間)
So lets say this is the matrix
TeamPasses = 26 25 25 25 25 26 26 26 26 25 25 25 25 26 26 26 25 25 25 25 26 26 26 25 25 26 26 26 26 26
for example, 25 is team 1 and 26 is team 2. Every time a player passes a ball during possession a 25 or 26 is written down. I want to know the amount of passes during possession. so how can I sum 25 until it changes in 26 and sum these aswell?
Thanks
  2 件のコメント
KSSV
KSSV 2016 年 11 月 28 日
An example will make things clear.
w.s.
w.s. 2016 年 11 月 28 日
I want to count the times 25 goes in a row until 26 is showing. then I want to count 26 until 25 Is showing again.
TeamPasses =
26
26
25
25
25
25
26
26
26
26
25
25
25
25
26
26
26
25
25
25
25
26
26
26
25
25
26
26
26
26
26
end
in the end I want to have a new matrix which include
team 2 2
team 1 4
team 2 4
team 1 4
team 2 3
team 1 4
team 2 3
team 1 2
team 2 5
end
more clear now?
Thanks

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

採用された回答

bio lim
bio lim 2016 年 11 月 28 日
TeamPasses = [26 25 25 25 25 26 26 26 26 25 25 25 25 26 26 26 25 25 25 25 26 26 26 25 25 26 26 26 26 26];
coffee = find(diff([-1 TeamPasses -1]) ~= 0);
length = diff(coffee);
team1 = length(1+(TeamPasses(1)==25):2:end)';
team2 = length(1+(TeamPasses(1)==26):2:end)';
Output:
team1 =
1
4
3
3
5
team2 =
4
4
4
2

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by