Multiple plots with time series object
4 次查看(过去 30 天)
显示 更早的评论
Hi everyone I am trying to plot two different time series objects in the same plot. The object have different units, so I tough using a 'plotyy' command but, it gives me an error because there are not enough arguments. The time index of the objects is similar i,e. in the same day, but they are from different data. If anybody knows how to plot two different time series object with two y axis, please tell me.
Thanks
0 个评论
回答(1 个)
Walter Roberson
2011-5-22
[ax, h1, h2] = plotyy(x1, y1, x2, y2);
datetick(ax[1], 'y', 'HH:MM', 'keeplimits');
datetick(ax[2], 'y', 'HH:MM', 'keeplimits');
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Two y-axis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!