Use logic to determine if array contains a specific date
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Michael Boyle
am 1 Dez. 2021
Bearbeitet: Stephen23
am 1 Dez. 2021
I have an array where one column contains dates in the DD-MM-YYYY format. I am trying to use if statements to do certain things based on what the MM is of a given row. So far I have tried using strcmp( ) and contains( ), but I am not sure how to format it.
x = datetime(2021,12,13);
contains(x,'Dec');
strcmp(x,'Dec');
What is the correct way to format this so that matlab can identify the month component of the date in the array?
1 Kommentar
Akzeptierte Antwort
Star Strider
am 1 Dez. 2021
x = datetime(2021,12,13);
y = datetime(2021,11,13);
TFx = month(x) == 12
TFy = month(y) == 12
.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Dates and Time finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!