How to create a function, that outputs Weekdays on given date?

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)

Convert the date to a datetime, and use the day function to return the day name.
D = datetime(2021,06,26);
out = day(D,'name')
out = 1×1 cell array
{'Saturday'}

4 Comments

the date is not pre defined, this function should work with any date that i give inside my function when i call it
Make an attempt and share it here. I'm purposely trying to not do your assignment for you.
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})
Saturday
ans = 'Saturday'

Sign in to comment.

Products

Release

R2021b

Asked:

on 1 Nov 2021

Commented:

on 12 Mar 2022

Community Treasure Hunt

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

Start Hunting!