Take the mean over multiple points in plot

8 Ansichten (letzte 30 Tage)
jj27
jj27 am 1 Okt. 2018
Kommentiert: Torsten am 1 Okt. 2018
I want to calculate the mean over multiple points in a plot.
y = [12 17 16 15 56 45 24 86 65 41];
x = length(y);
now I want the mean over the first two points the second two points etc. But my real dataset is bigger than these 10 points so I need a loop for it, but don't know how to do it.

Antworten (1)

Torsten
Torsten am 1 Okt. 2018
mean(reshape(y,2,numel(y)/2))
  4 Kommentare
Torsten
Torsten am 1 Okt. 2018
Is the lenghth of the y-array divisible by 60 ? What do you want to do if this is not the case ?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Language Fundamentals 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