Determine weekend elements
tf = isweekend(t)
example
tf = isweekend(t) returns an array the same size as t containing logical 1 (true) where the corresponding element of t is a datetime that occurs on a weekend day, and logical 0 (false) otherwise. Weekend days are Saturday and Sunday.
t
true
false
collapse all
t = datetime(2014,5,2:5,'Format','eee dd-MMM-yyyy')
t = 1x4 datetime Fri 02-May-2014 Sat 03-May-2014 Sun 04-May-2014 Mon 05-May-2014
tf = 1x4 logical array 0 1 1 0
May 3 and May 4, 2014 are days that fall on a weekend.
datetime
Input date and time, specified as a datetime array.
This function fully supports tall arrays. For more information, see Tall Arrays.
This function fully supports distributed arrays. For more information, see Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox).
day | isdst
day
isdst
You have a modified version of this example. Do you want to open this example with your edits?