date into double then back to date in loop
조회 수: 2 (최근 30일)
이전 댓글 표시
I imported dates from an Excel file called original as below:
date =table2array(original(:,1));
datedouble= datenum(date);
I have a for-lop with a for loop variable j such that:
a(j+1,1)= datedouble(j+1,1);
My question: this for loop stores serial number of the date, and I want to conver this back to the dates. I tried datestr(datedouble(j+1,1)), but it says the dimension doesn't matach as it is some sort of 1x10 on the right hand side and left hand side is 1x1.
How can I resolve this?
Thanks!
댓글 수: 0
채택된 답변
Sean de Wolski
2019년 11월 25일
편집: Sean de Wolski
2019년 11월 25일
You should really look at creating a datetime and using its various properties and methods instead of datenum or datestr.
Can you provide a small data set of what you have and what you want?
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Dates and Time에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!