convert a time data into a Epoch/Unix time
14 ビュー (過去 30 日間)
古いコメントを表示
The time data are saved as DATE and TIME in the two columns of a Excel worksheet. How can I convert them into a Epoch/Unix time by Matlab?
DATE TIME
24-DEC-2016 04:31:04:59
0 件のコメント
採用された回答
Walter Roberson
2017 年 1 月 8 日
編集済み: Walter Roberson
2018 年 12 月 7 日
posixtime( datetime(strcat(DATE, {' '}, TIME), 'InputFormat', 'dd-MMM-yyyy hh:mm:ss:SS') )
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
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!