Plot of a Time Variable
이전 댓글 표시
Hi,
so I have a variable that has the time of arrival of different messages from 00:00:00 to 23:59:59. What I want is to get a figure of bars where each bar has the messages from an Hour. There would be a total of 24 bars.
How could I do it?
댓글 수: 4
Mathieu NOE
2021년 10월 14일
hello
so you want to plot a histogram ?
Lei Hou
2021년 10월 18일
Hi Vicente,
Are you looking for this?
>> bar(duration([1 2 3],0,0),[5 1 10])

Thanks,
Lei
flashpode
2021년 10월 18일
flashpode
2021년 10월 18일
답변 (1개)
KSSV
2021년 10월 18일
0 개 추천
As you have data every second, you need to do hourly mean to get 24 values. You have two options.
- Reshape the data into 24*m; use mean and then plot the data.
- USe retime to get hourly average and then plot.
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!