필터 지우기
필터 지우기

Date and Time from Text with Literal Characters, Part 3

조회 수: 1 (최근 30일)
alpedhuez
alpedhuez 2020년 12월 6일
댓글: alpedhuez 2020년 12월 7일
The data is like
Date Visitors
'Jan 1 2020' 100
'Jan 2 2020' 50
I now want to create a new variable 'date' and set the value of the second row to be 1/1/2020, and then increment one by one. How can one let Matlab do this?

채택된 답변

Cris LaPierre
Cris LaPierre 2020년 12월 7일
편집: Cris LaPierre 2020년 12월 7일
date1 = datetime('Jan 1 2020','InputFormat', 'MMM dd uuuu','Format','M/d/yy');
date2 = datetime('Jan 5 2020','InputFormat', 'MMM dd uuuu','Format','M/d/yy');
date = date1:days(1):date2
date = 1×5 datetime array
1/1/20 1/2/20 1/3/20 1/4/20 1/5/20
Or if you know the number of rows but not the end date:
date = date1 + days(0:4)
date = 1×5 datetime array
1/1/20 1/2/20 1/3/20 1/4/20 1/5/20

추가 답변 (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