Hello I have a figure with datetime in x- axis. I want to plot a vertical line but through code where is the exact point but i receive an error.
Any ideas how to do this?

回答 (1 件)

Steven Lord
Steven Lord 2020 年 7 月 9 日

0 投票

First, plot some duration data.
y = (0:59);
x = duration(0, y, 1);
plot(x, y);
Now add a line at a specific value. Note that since I plotted with duration data on the X axis, when creating an xline I must create it at a duration value. If I tried something like xline(15) that wouldn't work.
xline(duration(0, 15, 0))

2 件のコメント

Ancalagon8
Ancalagon8 2020 年 7 月 9 日
"Undefined function or variable 'xline'."
madhan ravi
madhan ravi 2020 年 7 月 9 日
It was introduced in 2018b so if you’re using a prior release it won’t work.

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

カテゴリ

ヘルプ センター および File ExchangeData Type Conversion についてさらに検索

質問済み:

2020 年 7 月 9 日

編集済み:

2025 年 1 月 6 日

Community Treasure Hunt

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

Start Hunting!

Translated by