Array operation inside summing
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hems
el 25 de Jul. de 2016
Comentada: Hems
el 2 de Ag. de 2016
I would like to make an array "A" from another array called "B" by summing up all previous elements till that element position ....please see below example
A=[1 2 3 4 5] and B array has to as follows
B=[1 1+2 1+2+3 1+2+3+4 1+2+3+4+5]
Please help me out I have quiet a big array to sum up like this.
1 comentario
Respuesta aceptada
Azzi Abdelmalek
el 25 de Jul. de 2016
Editada: Azzi Abdelmalek
el 25 de Jul. de 2016
A=[1 2 3 4 5]
B=cumsum(A)
Más respuestas (0)
Ver también
Categorías
Más información sobre Multidimensional Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!