필터 지우기
필터 지우기

Use logic to determine if array contains a specific date

조회 수: 15 (최근 30일)
Michael Boyle
Michael Boyle 2021년 12월 1일
편집: Stephen23 2021년 12월 1일
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
Stephen23
Stephen23 2021년 12월 1일
편집: Stephen23 2021년 12월 1일
Note that the DATETIME object already includes the MONTH property, no other functions are required:
x = datetime(2021,12,13)
x = datetime
13-Dec-2021
x.Month==12
ans = logical
1

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2021년 12월 1일
Use the month function, then do the comparison —
x = datetime(2021,12,13);
y = datetime(2021,11,13);
TFx = month(x) == 12
TFx = logical
1
TFy = month(y) == 12
TFy = logical
0
.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Identification에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by