Simpl equestion about CUMSUM
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
How can I rewrite the following code using cumsum?
for i=0:299
A(i+1)=sum(B > i);
end
Many thanks!
2 comentarios
Respuesta aceptada
Kye Taylor
el 14 de Jun. de 2013
Editada: Kye Taylor
el 14 de Jun. de 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 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!