Selecting Mondays from a Timetable or Table using the datetime object

2 ビュー (過去 30 日間)
Lewis Waswa
Lewis Waswa 2022 年 3 月 8 日
コメント済み: Stephen23 2022 年 3 月 8 日
Hi,
I would like to write a script that scrolls through my five minutes resolved timetable / table to select identifies all the days that are Mondays and then group them based on the datetime variable of the table/timetable.
I have tried several other ways to do it including the one below. Instead, if I specify the the day as 1, it returns all the first days of the periods (in this case months) and not specifically the Mondays.
Day1=HHB1(1==day(HHB1.VarName1),:); % HHB1 is the datetime object
%%
Any help?

採用された回答

Stephen23
Stephen23 2022 年 3 月 8 日
編集済み: Stephen23 2022 年 3 月 8 日
By default DAY returns the day of the month, so you need to specify its second argument like this:
d = day(t,'dayofweek')
  4 件のコメント
Lewis Waswa
Lewis Waswa 2022 年 3 月 8 日
Thank you @Stephen. This returns the data I need.
Stephen23
Stephen23 2022 年 3 月 8 日
@Lewis Waswa: Please remember to click the accept button if my answer helped you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTables についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by