I have data with dates and times in separte columns. How do I put them together into a datetime format?
2 ビュー (過去 30 日間)
古いコメントを表示
I have data with dates and times in separate columns. How can I get them combined into a single datetime stamp column?
4 件のコメント
Jan
2019 年 3 月 6 日
And what is the wanted result? A Matlab array or table object, another CSV file?
Please add the required details. The readers cannot guess, what you want to do.
採用された回答
Peter Perkins
2019 年 3 月 11 日
Timothy, in recent versions of MATLAB (since R2018a, IIRC), readtable should read those two columns as a datetime and a duration, and you can just add them. Prior to that, you'lll have to read the times in as text and convert to duration. You can use this File Exchange post. After that, just add o the datetime.
But it looks like maybe you got there on your own!
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!