datestr generating different string
조회 수: 2 (최근 30일)
이전 댓글 표시
I have an array with days, months and years. This is my string
[myd '/' mym '/' myy]
ans =
20/01/2014
But datestr generates this
datestr([myd '/' mym '/' myy])
ans =
06-Jul-0025
Any clue?
Thanks
댓글 수: 0
채택된 답변
Chad Greene
2021년 5월 1일
How about
myy = 2014;
mym = 1;
myd = 20;
datestr(datenum(myy,mym,myd),'dd/mm/yyyy')
댓글 수: 3
Chad Greene
2021년 5월 1일
How's this?
datestr(datenum(string([myd '/' mym '/' myy]),'dd/mm/yyyy'))
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!