Take the mean over multiple points in plot
이전 댓글 표시
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.
답변 (1개)
Torsten
2018년 10월 1일
0 개 추천
mean(reshape(y,2,numel(y)/2))
댓글 수: 4
jj27
2018년 10월 1일
I guess that the number of element in y is an odd number. This conflicts with your averaging.
Try
Z=[mean(reshape(y(1:end-1),2,numel(y(1:end-1))/2)),y(end)]
jj27
2018년 10월 1일
Torsten
2018년 10월 1일
Is the lenghth of the y-array divisible by 60 ? What do you want to do if this is not the case ?
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!