How can I plot vertical lines which indicates seasons in a single time series?
1 次查看(过去 30 天)
显示 更早的评论
Hi, I have wind speed values of 2012. I used timeseries feature and I can plot them. x-axis:time (Date and hour , Cell array format) y-axis:values. And I want to draw vertical lines which indicates summer,fall,winter and spring. How can I plot this four vertical lines on a graph?
0 个评论
采纳的回答
Image Analyst
2013-7-9
Try this:
yl = ylim;
line([xValue, xValue], [yl(1), yl(2)]);
You can also add options like the color of the line and its width.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time Series 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!