How to Find average value for every 10 sets of a matrix

1 view (last 30 days)
I have a one dimensional array A of 1000 elements.
How do I calculate the mean of elements for the first 10 sets ,then the second sets, and third sets so on until 1000

Accepted Answer

Mischa Kim
Mischa Kim on 15 Jan 2021
Hi Magdy, you could use something like:
x = 1:1:12; % this would be your matrix A
y = reshape(x,3,4)
m = mean(y,1)
  2 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!