how to count number of transitions
9 ビュー (過去 30 日間)
古いコメントを表示
i want to count the number of transitions in a 1-by-n binary array.
how to do it?
n does not exceed 10.
0 件のコメント
回答 (1 件)
Star Strider
2015 年 4 月 16 日
If you want to count both the positive [0 1] and negative [1 0] transitions, the easiest way is likely:
A = randi([0 1], 1, 25);
T = sum(diff(A)~=0);
If you want the positive and negative transitions separately:
PT = sum(diff(A)>0);
NT = sum(diff(A)<0);
参考
カテゴリ
Help Center および File Exchange で Multidimensional Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!