Simpl equestion about CUMSUM
1 回表示 (過去 30 日間)
古いコメントを表示
How can I rewrite the following code using cumsum?
for i=0:299
A(i+1)=sum(B > i);
end
Many thanks!
2 件のコメント
採用された回答
Kye Taylor
2013 年 6 月 14 日
編集済み: Kye Taylor
2013 年 6 月 14 日
I don't think I would use cumsum here. Instead, try
A = sum(bsxfun(@gt,B',0:299));
Note, this command above assumes B is a row vector (the 1-by-35535 vector you mention).
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!