Simpl equestion about CUMSUM
    7 views (last 30 days)
  
       Show older comments
    
How can I rewrite the following code using cumsum?
    for i=0:299
        A(i+1)=sum(B > i);
    end
Many thanks!
2 Comments
Accepted Answer
  Kye Taylor
      
 on 14 Jun 2013
        
      Edited: Kye Taylor
      
 on 14 Jun 2013
  
      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 Comments
More Answers (1)
See Also
Categories
				Find more on Loops and Conditional Statements in Help Center and File Exchange
			
	Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

