Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 .txt 中,我有列“时间”,格式为:
2012 年 8 月 9 日 11:21:43:739
现在我想绘制数据与时间的关系,但我收到错误“无法从单元格转换为双倍”。
所以问题是我的时间戳,我该如何更改它以便我可以绘制我的数据(可能是时间戳结束时的毫秒问题)?
问题似乎是毫秒字段。它的格式错误。你有:
11:21:43:739
相反,你需要这个:
11:21:43.739
毫秒应该用点分隔,而不是冒号。
如果您希望保留当前格式,则在转换日期字符串时需要自定义格式说明符。例如:
datenum('8/9/2012 11:21:43:739', 'dd/mm/yy HH:MM:SS:FFF')