how to convert date to numbers

조회 수: 3 (최근 30일)
Boss Man
Boss Man 2020년 2월 25일
댓글: Star Strider 2020년 2월 25일
so i have 200 dates on my data from 1st october....
i wanted to know if there was a trick to numbering the dates,
e.g. making 1st october=1
2nd october=2 etc
  댓글 수: 6
Boss Man
Boss Man 2020년 2월 25일
fixed the date problem with readtable,it displays the date now
i now get this error when using day(t)
Undefined function 'day' for input arguments of type 'table'.
dpb
dpb 2020년 2월 25일
The variable t is your table; NOT the date variable inside the table. If it is named something original like 'Date', say, then
da=day(t.Date);

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

채택된 답변

Star Strider
Star Strider 2020년 2월 25일
I showed you how to read them and do other operations on them in: How to combine date and time.
That also converts them to date numbers, and from there you can number them as you wish. The integer part of a date number are days, and the fractional parts are fractions of a day.
  댓글 수: 2
Boss Man
Boss Man 2020년 2월 25일
thanks :)
Star Strider
Star Strider 2020년 2월 25일
As always, my pleasure!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Time Series Objects에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by