sum contents of array in groups of 10

3 Ansichten (letzte 30 Tage)
C.G.
C.G. am 21 Jan. 2021
Kommentiert: C.G. am 21 Jan. 2021
My code produces a variable 'grains' which is a 1x3001 double.
I want to sum together the numbers in the first 10 cells, and repeat this in blocks of 10 cells until the end and save these in a new variable.
Please could somebody provide me with a starting point?
  2 Kommentare
Stephen23
Stephen23 am 21 Jan. 2021
3001 is not exactly divisible by 10: what do you want done with the last element?
C.G.
C.G. am 21 Jan. 2021
i dont want to include the last one

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Stephen23
Stephen23 am 21 Jan. 2021
Where V is your 1x3001 vector:
M = sum(reshape(V(1:3000),10,[]),1)

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by