A year containing a date or not
1 回表示 (過去 30 日間)
古いコメントを表示
How can I check a year containing a specified date or not.
eg. 2050 contain a as a sunday in a date 30.
input is like: 1,2050(januvary 2050)
output : true because it contain 30 as a sunday
2 件のコメント
回答 (3 件)
KSSV
2020 年 7 月 3 日
Fromhere you can pick the required column,(first column corresponds to Sunday) and check whether the given day is present or not.
0 件のコメント
Walter Roberson
2020 年 7 月 3 日
year = 2050; month = 1;
has_sunday30 = weekday(datetime(year, month, 30)) == 1;
2 件のコメント
Walter Roberson
2020 年 7 月 3 日
input(). Or menu(). Or inputdlg() together with str2double() . Or use some popups or listboxes.
参考
カテゴリ
Help Center および File Exchange で Dates and Time についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!