How to change the date format by not misplacing days with months?

조회 수: 2 (최근 30일)
B.kun
B.kun 2014년 6월 22일
댓글: Star Strider 2014년 6월 22일
Dear all,
I have a huge dataset with dates in the first column of the array (lets call it 'myarray'). My date in the first column of "myarray" is displayed as follows: '1-12-13 21:34' '1-12-13 21:35' '1-12-13 21:36' However, I want to change the format of my dates to two-digits days, i.e. 'dd-mm-yy HH:MM'.
But when I executed this code: myarray= cellstr(datestr(myarray(:,1),'dd-mm-yy HH:MM'));
The dates became: '12-01-13 21:34' '12-01-13 21:35' '12-01-13 21:36'
My original date is 1st of December, but the dates became 12th January... Can anyone help me make them the correct date? with format dd-mm-yy.
Thank you very much!

채택된 답변

Star Strider
Star Strider 2014년 6월 22일
편집: Star Strider 2014년 6월 22일
See if this does what you want:
DateTime = {'1-12-13 21:34' '1-12-13 21:35' '1-12-13 21:36'};
NewDate = datestr(datenum(DateTime, 'dd-mm-yy HH:MM'), 'dd-mm-yy HH:MM')
produces:
NewDate =
01-12-13 21:34
01-12-13 21:35
01-12-13 21:36

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by