Documentation

isweekend

确定weekend elements

Syntax

tf = isweekend(t)

Description

example

tf = isweekend(t)returns an array the same size astcontaining logical 1 (true) where the corresponding element oftis a datetime that occurs on a weekend day, and logical 0 (false) otherwise. Weekend days are Saturday and Sunday.

Examples

collapse all

t = datetime(2014,5,2:5,'Format','eee dd-MMM-yyyy')
t =1×4 datetime arrayFri 02-May-2014 Sat 03-May-2014 Sun 04-May-2014 Mon 05-May-2014
tf = isweekend(t)
tf =1×4 logical array0 1 1 0

May 3 and May 4, 2014 are days that fall on a weekend.

Input Arguments

collapse all

Input date and time, specified as adatetimearray.

Extended Capabilities

See Also

|

Introduced in R2014b

Was this topic helpful?