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 = 1×4 datetime array Fri 02-May-2014 Sat 03-May-2014 Sun 04-May-2014 Mon 05-May-2014
tf = 1×4 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.
day | isdst
day
isdst