How can I make this line start from a specific date?

3 ビュー (過去 30 日間)
Pul
Pul 2021 年 9 月 4 日
編集済み: Pul 2021 年 9 月 5 日
Hello everyone,
How can I make the magenta line start from a specific date (14 Jan 2015) in the graph, instead of 1 Jan 1998?
% Lv = DTv <= datetime('7-Jan-2020');
Thank you!

採用された回答

Star Strider
Star Strider 2021 年 9 月 4 日
Change ‘Lv’ to:
Lv = (DTv <= datetime('7-Jan-2020')) & (DTv >= datetime('14-Jan-2015'));
and it should do what you want.
Consider adding:
xlim([min(DTv(Lv)) max(DTv(Lv))])
after the plot calls that use ‘DTv’ to restrict the x-axis limits. This is not required, however it would avoid whitespace at the ends of the plots.
.
  6 件のコメント
Pul
Pul 2021 年 9 月 5 日
Yes, perfect.
Thank you!
Star Strider
Star Strider 2021 年 9 月 5 日
As always, my pleasure!
.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by