Clear Filters
Clear Filters

How to group a collection of values in a vector?

4 views (last 30 days)
I have a data set that is made up of measurements done every 6 hours over the course of a year. So that is 1460 for an ordinary year and 1464 for a leap year. I am having trouble grouping them so that the values of each 4x6 hour group is averaged into a day.
Each year is a vector.

Accepted Answer

Rik
Rik on 11 Jul 2018
There are a myriad of way to do this, one of them should be the code below.
data=1:12;%example data
data=reshape(data,4,[]);%reshape so each day is a column (hence 4 rows)
dayly_mean=mean(data,1);
  2 Comments
Rik
Rik on 14 Jul 2018
Did this suggestion solve your problem? If so, please consider marking it as accepted answer. It will make it easier for other people with the same question to find an answer. If this didn't solve your question, please comment with what problems you are still having.
Paul Torres
Paul Torres on 17 Jul 2018
No, this solved the problem perfectly without me having to go through the trouble of creating a for loop. Thank you

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!