绘制数据与时钟时间的关系图
我有高分辨率数据(500 Hz)。我从中午 12:00:00 开始
总共有 720 万个数据点 <7,200,000x1 double>称为数据。我如何根据实时情况绘制它,例如中午 12 点、下午 1 点、下午 2 点、下午 3 点、下午 4 点等(日期刻度)
I have high resolution data (500 Hz). I started at 12:00:00 p.m.
In total I have 7.2 million data points <7,200,000x1 double> called data. How would I plot it against real time, like 12 pm, 1 pm, 2 pm, 3 pm, 4 pm, etc. (date ticks)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑以下示例:
日期轴刻度线的格式是使用 DATETICK 函数。阅读文档以了解如何自定义日期格式。
请注意,由于您有数百万个点,我选择绘制一个子样本(每 2000 个值),但如果您愿意,您可以轻松更改它以绘制整个数据...
Consider this example:
The formatting of the date axis tick marks is done using the DATETICK function. Read the documentation to learn how to customize the date format.
Note that as you have millions of points, I opted to plot a sub-sample (every 2000 values), but you can easily change that to plot the entire data if you like...