A year containing a date or not

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 Comments

If that month contains 30 as sunday?
Yes. Then the output is true or not it became false.
another eg: 5, 2010
output false, when in 2010th december is not sunday in the date 30.

Sign in to comment.

Answers (3)

KSSV
KSSV on 3 Jul 2020
Fromhere you can pick the required column,(first column corresponds to Sunday) and check whether the given day is present or not.
year = 2050; month = 1;
has_sunday30 = weekday(datetime(year, month, 30)) == 1;

2 Comments

Thank you .
I need to take the input from user.
input(). Or menu(). Or inputdlg() together with str2double() . Or use some popups or listboxes.

Sign in to comment.

strcmp(string(datetime(2050,30,1,'format','eeee')),"Sunday")

2 Comments

Thank you .
I need to take the input from user.
Use input() for 2050 and 1.

Sign in to comment.

Categories

Tags

Asked:

on 3 Jul 2020

Commented:

on 3 Jul 2020

Community Treasure Hunt

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

Start Hunting!