Increase counter for each element in array

2 ビュー (過去 30 日間)
Dario Walter
Dario Walter 2020 年 6 月 17 日
コメント済み: Dario Walter 2020 年 6 月 18 日
Hey,
given A = [1 1 3 4 5 6 6 7 7 7]. How could I return the sequence B =[1 2 1 1 1 1 2 1 2 3] such that each duplicate is counted and B is the same size as A?
I appreciate your help!

採用された回答

madhan ravi
madhan ravi 2020 年 6 月 17 日
ix = A(:) == unique(A);
B = nonzeros(cumsum(ix) .* ix)
  6 件のコメント
madhan ravi
madhan ravi 2020 年 6 月 18 日
I knew you would come up with that question. That’s why you should experiment with 'stable' option in unique function.
Dario Walter
Dario Walter 2020 年 6 月 18 日
Well done Madhan :). Thanks a lot!

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by