Series of vector values

1 visualización (últimos 30 días)
Nicolò Monaco
Nicolò Monaco el 15 de Mzo. de 2021
Comentada: Nicolò Monaco el 15 de Mzo. de 2021
I have a vector and I want another vector of the same lenght having as values the sequential sum of the values of the first vector. Basically I want a series from vector values. Ideas?

Respuesta aceptada

Steven Lord
Steven Lord el 15 de Mzo. de 2021
You want the cumulative sum?
x = 1:10
x = 1×10
1 2 3 4 5 6 7 8 9 10
y = cumsum(x)
y = 1×10
1 3 6 10 15 21 28 36 45 55
  1 comentario
Nicolò Monaco
Nicolò Monaco el 15 de Mzo. de 2021
sorry for the stupid question, but thank youuu :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by