I have a 20x1 vertical matrix. I want to take the averages of the pairs in order and display them in another matrix. How?
Show older comments
To elaborate. I want to average the first and second numbers, third and fourth numbers, etc.. and display them again in a 10x1 matrix.
Accepted Answer
More Answers (1)
Honglei Chen
on 28 Jun 2012
Edited: Honglei Chen
on 28 Jun 2012
x = rand(20,1);
y = transpose(mean(reshape(x,2,10)))
Categories
Find more on Mathematics 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!