Way to import time series date string as mm-dd-yyyy
1 回表示 (過去 30 日間)
古いコメントを表示
My data is in the format of mm-dd-yyyy hh:mm:ss however it seems like the time series import tool will only import dates & time data if the format is in dd-mmm-yyyy hh:mm:ss
1 件のコメント
Jan
2011 年 9 月 20 日
What exactly is your question? Can you post the type of the available input and wanted output?
採用された回答
Jan
2011 年 9 月 20 日
You can convert the data manually:
S1 = '07-12-2011 13:14:15'
D = datenum(S1, 'mm-dd-yyyy HH:MM:SS');
S2 = datestr(D, 'dd-mmm-yyyy HH:MM:SS')
0 件のコメント
その他の回答 (2 件)
Chris
2011 年 9 月 20 日
2 件のコメント
Fangjun Jiang
2011 年 9 月 20 日
Time series supports all the data format. What tsimport tool are you using?
参考
カテゴリ
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!