vector confusion

2 ビュー (過去 30 日間)
Leor Greenberger
Leor Greenberger 2011 年 9 月 22 日
I have a vector A whose values are indices for vector P.
Say A = 2 occurs 10 times.
If I do:
P(A) = P(A) + 1
P(2) = 1 % not 10
I believe I understand why this is happening. Is there a solution without going into FOR loops? A could be quite large.
  2 件のコメント
the cyclist
the cyclist 2011 年 9 月 22 日
I do not understand what you mean by "A = 2 occurs 10 times". Can you write out code for what you mean?
Leor Greenberger
Leor Greenberger 2011 年 9 月 22 日
A = [1 2 4 5 2 4 6 7 2 ....] <-- 2 occurs 10 times.

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

採用された回答

Walter Roberson
Walter Roberson 2011 年 9 月 22 日
Especially if you are starting with an all-zero array, use
P = accumarray(A(:),1);
  1 件のコメント
Leor Greenberger
Leor Greenberger 2011 年 9 月 22 日
excellent!!! I can't believe there is a function for this!

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

その他の回答 (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