convert day year hour data series with missing data to a serial number
이전 댓글 표시
I have a year of data from "01/01/2003 00:00" to "2003/12/31 23:59" with some days/hous missing from the data series. I think to convert these dates/times to serial numbers I have to use the datenum. To convert each one of these numbers I understand that I have to do: datenum(2003,1,1,0,0,0) which gives ans =
731582.00
This is fine for one number but how I can convert the whole series? thanks, Katerina
채택된 답변
추가 답변 (1개)
Adam
2014년 8월 22일
str{1} = '01/01/2003 00:00'
str{2} = '2003/12/31 23:59'
datenum( str )
ans =
1.0e+05 *
7.3158
7.3195
So you should just be able to put all your strings into a cell array and pass that in to datenum
댓글 수: 5
I've never really used datanum, but it seems it doesn't mind if your array of strings is jumbled up with different formats either. I just pasted in the two dates from your question without realising they were in different formats!
Edit : Looking at the help I guess it is just slower with jumbled up format names that the Matlab function has to work out itself for each element. Putting them all in the same format and specifying that explicitly would be faster.
Katerina F
2014년 8월 23일
Adam
2014년 8월 23일
Is that all one string in a single variable?
Katerina F
2014년 8월 25일
If it is a cell array you should just be able to pass it to datenum. If not then you will need to convert each row to a cell containing the string rather than a standard char matrix using e.g.
dateCells = cellstr( dates )
카테고리
도움말 센터 및 File Exchange에서 Time Series Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!