Update array elements with the element before

2 visualizaciones (últimos 30 días)
Rayad Hallak
Rayad Hallak el 3 de Nov. de 2022
Comentada: Rayad Hallak el 3 de Nov. de 2022
Hey, How can i update array elements by adding to each element the whole elements before, e.g if i have an array with (1 2 3 4 5 6) i want to have the answer of (1 1+2 1+2+3 1+2+3+4 --------)?
Best regards!

Respuestas (1)

Stephen23
Stephen23 el 3 de Nov. de 2022
Editada: Stephen23 el 3 de Nov. de 2022
V = 1:6
V = 1×6
1 2 3 4 5 6
Z = cumsum(V)
Z = 1×6
1 3 6 10 15 21

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by