How do I plot time intervals in weekdays?

조회 수: 6 (최근 30일)
Asrorkhuja Ortikov
Asrorkhuja Ortikov 2020년 9월 24일
댓글: Asrorkhuja Ortikov 2020년 9월 29일
I need to spread time intervals in 24h scale and plot them in each week days? How do I do it? So, the idea is to see how people are behaving over the week. Time intervals are given as st_time (starting time) and end_time in data attached, and the value need to be spreaded over interval is Pevdumb.

채택된 답변

Prudhvi Peddagoni
Prudhvi Peddagoni 2020년 9월 28일
Hi Asrorkhuja Ortikov,
You can use T=readtable(filename) function to read the xlsx file into MATLAB.
Then you can retrieve all values that follow a condition like this for example:
T1=T(T(:,3));
This line stores all the rows with mon as the weekday. More information about this here (look in Select Rows with Logical Indexing section).
Then you can use the bar(X,Y) function to plot the graph. More about the bar function here.
Hope this helps.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by