필터 지우기
필터 지우기

Error converting datetime to month names

조회 수: 1 (최근 30일)
Collin Tuttle
Collin Tuttle 2017년 2월 1일
답변: Walter Roberson 2017년 2월 1일
I want to convert numbers 1-12 to month names in a text string (January, February, etc...) I was using this:
for m = 1:12
t = datetime(m,m,m)
mon = month(t,'name')
end
and it was working fine, however I tried this same exact thing and now it is no longer working, I am getting this error: Function 'subsindex' is not defined for values of class 'datetime'.
Does anyone know how to fix this, or another way to do this?
  댓글 수: 1
the cyclist
the cyclist 2017년 2월 1일
Perhaps you are calling from a different directory, finding a local function named month?
What do you get when you type
which month -all
?

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

채택된 답변

Walter Roberson
Walter Roberson 2017년 2월 1일
In order for that particular error to have occurred, you would have to already have a variable named "month", in which case MATLAB would think you were trying to index that variable using a datetime as the index.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by