Clear Filters
Clear Filters

Mean of elements of a vector

1 view (last 30 days)
Sean O'Donnell
Sean O'Donnell on 27 Mar 2019
Commented: Sean O'Donnell on 28 Mar 2019
I have a vector K = [1.7135 3.2725 4.0000 3.2725 1.7135 0.4775 0.0365 0 0.0365 0.4775]. How do I take the mean of all of the sets of two sequential elements of this vector without using a "for" loop? Example: Mean of K(1) and K(2), K(2) and K(3), K(3) and K(4) etc. And then put all of those individual means into a single vector?
Thanks.
  2 Comments
Walter Roberson
Walter Roberson on 27 Mar 2019
Sounds like homework.
Hint: A(1:end-1) and A(2:end)
Sean O'Donnell
Sean O'Donnell on 28 Mar 2019
This worked. Thank you!

Sign in to comment.

Answers (1)

Rik
Rik on 27 Mar 2019
Use a convolution.
conv(data,[0.5 0.5])
should be a good start.

Community Treasure Hunt

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

Start Hunting!