date and time serial conversion
이전 댓글 표시
I have a table with one million rows and 5 columns. The first column has the dates and the second column the time. I want toconvert the date and time to a number as i want to turn the table into a matrix and a matrix cannot have date and time.
댓글 수: 4
James Tursa
2014년 11월 4일
How is the data stored? Cell array of strings or what? What number do you want the date converted to? Datenum or Julian Day or what?
AA
2014년 11월 4일
per isakson
2014년 11월 4일
"appear as 26072004"   Why do you want it that way? To me that is asking for problems down the road.
AA
2014년 11월 4일
채택된 답변
추가 답변 (1개)
Michael Haderlein
2014년 11월 4일
You can use datenum:
datevec(datenum('04.11.2014 12:48','dd.mm.yyyy HH:MM'))
ans =
2014 11 4 12 48 0
카테고리
도움말 센터 및 File Exchange에서 Dates and Time에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!