How to find out number of Fridays in a month?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I guess I can use lweekdate and nweekdate. Just wondering if there is a faster way to do this.
0 Commenti
Risposte (2)
Stephen23
il 11 Ago 2022
Here is a really simple approach using CALENDAR():
M = calendar(2022,8);
N = nnz(M(:,6))
Otherwise you could try using a DATETIME array:
D = datetime(2022,8,1);
V = D:D+calmonths(1)-caldays(1);
N = nnz(weekday(V)==6)
0 Commenti
Cris LaPierre
il 11 Ago 2022
year = 2022;
month = 4;
dt = datetime(year,month,1):caldays(1):dateshift(datetime(year,month,1),'end',"month");
dys = weekday(dt)
nFr = sum(dys==6)
0 Commenti
Vedere anche
Categorie
Scopri di più su Calendar in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!