matlab中的日期
在matlab中,是否可以以任何方式执行以下操作: 通过使用
S = DATESTR(D, 31)
Number String Example
31 'yyyy-mm-dd HH:MM:SS' 2000-03-01 15:45:17
matlab 是否可以执行生成一个字符串的操作,该字符串以预定义的间隔在特定日期开始和结束。
例如,如果 Excel 中的数据的时间向量从 2009-01-01 00:00:00
开始,到 2009-10-10 10:00:00
结束 code> 每四分钟进行一次测量,是否可以将其输入到 matlab 中?如果我不清楚,请告诉我。
In matlab, is it possible in any way to do the following:
By using
S = DATESTR(D, 31)
Number String Example
31 'yyyy-mm-dd HH:MM:SS' 2000-03-01 15:45:17
Is it possible for matlab carry out an operation of producing a string which starts and ends at specific days with a pre-defined interval.
For example, if I had data in Excel with a time vector starting at 2009-01-01 00:00:00
and finishing at 2009-10-10 10:00:00
with measurements taken every four minutes, is it possible to type this into matlab? If I'm not clear please let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要生成在特定日期开始/结束且具有预定义间隔的日期字符串数组,您可以执行以下操作:
转换为数字日期形式,生成序列,然后转换回来。例如:
For producing an array of date strings that start/end on specific dates, with a pre-defined interval, you can do this:
Convert to a numeric date form, generate the sequence, and then convert back. For example:
这能满足您的需要吗?
Does this do what you need?