フィルターのクリア

If I have day month and Year in Xaxis, How can apply limit to the Xaxis?

2 ビュー (過去 30 日間)
Meghraj Kc
Meghraj Kc 2022 年 3 月 22 日
コメント済み: Star Strider 2022 年 3 月 23 日
I want to Plot the data for every month and year, so How can i apply the xlimit?

採用された回答

Star Strider
Star Strider 2022 年 3 月 22 日
If ‘x’ is a datetime array, the arguments to xlim must also be datetime values —
x = datetime('now')+days(0:60);
y = sin(2*pi*5*(0:numel(x)-1)/numel(x));
figure
plot(x,y)
grid
title('Original')
figure
plot(x,y)
grid
xlim([datetime('12-Apr-2022') datetime('12-May-2022')])
title('With ‘xlim’')
.
  8 件のコメント
Meghraj Kc
Meghraj Kc 2022 年 3 月 23 日
Thank you for the help!!
I understood and applied to my code.
Thank you
Star Strider
Star Strider 2022 年 3 月 23 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFormatting and Annotation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by