Do a plot of the messages from 24 hours. Hour by Hour
조회 수: 1(최근 30일)
표시 이전 댓글
Hey, so I got a variable of duration that has de time of each message that goes from 00:00:00 to 23:59:59 and I want to make a plot that show me the amount of messages each hour. How could I do it? I made this but I got an error:
Hours_24 = (0:1:23)/24;
figure(1)
plot(Hours_24,Time_AIS1);
The error showed is:
Error using plot
Vectors must be the same length.
답변(1개)
Sulaymon Eshkabilov
2021년 9월 30일
Easy solution might be this, e.g.:
N = numel(Time_AIS1);
figure(1)
stem(1:N, Time_AIS1), xlabel('Hour'), ylabel('# of messages')
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!