How to create a function, that outputs Weekdays on given date?
Show older comments
hello everyone,
basically i have to create my own function, which gives me the weekday when i give date. for exp in this format :
input : 26,06,2021
output : Date = 26,06,2021
Day = Saturday
I am trying to write it, but i am not getting any further, i would really appreciate it, if anyone can help me.
Answers (1)
D = datetime(2021,06,26);
out = day(D,'name')
4 Comments
Mihir Rathod
on 1 Nov 2021
Cris LaPierre
on 1 Nov 2021
Make an attempt and share it here. I'm purposely trying to not do your assignment for you.
Dianela Jimenez Ramirez
on 12 Mar 2022
Hi Cris, your comment has been very helpful! I´m wondering if there is a way to show only day and hide the phrase in the output out = 1×1 cell array. Thank you!
Use the function disp
D = datetime(2021,06,26);
out = day(D,'name');
disp(out{1})
Categories
Find more on Calendar in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!