how to take mean of every second data in a minute and an hourly?

9 views (last 30 days)
I have data every second like
A = 16:22:54
16:22:55
16:22:56
16:22:57
.........
.........
B = 91.964
92.384
81.198
NAN
82.222
.........
.........
I want to make a new matrix which has every minute mean data.
please find the attached files. (Note: Time is in numeric formate)
Thank you

Accepted Answer

Walter Roberson
Walter Roberson on 19 Jun 2019
We recommend creating timetable() and using the retime() function.

More Answers (1)

Walter Roberson
Walter Roberson on 20 Jun 2019
TT2 = retime(TT1, 'minute', @std);
  3 Comments
Steven Lord
Steven Lord on 20 Jun 2019
What's the standard deviation of an array with no elements?
>> std([])
ans =
NaN
If any of the minute bins are empty, the standard deviation of the data in that bin should be NaN.

Sign in to comment.

Categories

Find more on Tables 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!