vector confusion
2 次查看(过去 30 天)
显示 更早的评论
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
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?
采纳的回答
Walter Roberson
2011-9-22
Especially if you are starting with an all-zero array, use
P = accumarray(A(:),1);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!