Please find attached the vector that I am trying to convert
Converting date string to number
조회 수: 27 (최근 30일)
이전 댓글 표시
I have a vector of the following format 01-Jul-1980 00:00:00 how can I convert to a matlab date number?
답변 (3개)
Walter Roberson
2018년 2월 11일
You have a datetime array. You can convert it to serial datenum using
datenum(issuedate)
Note that this is typically not required any more, but can be required for some plotting reasons from R2013b to R2015b.
댓글 수: 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!