Struggling with line()

1 次查看(过去 30 天)
Hi,
I am trying to plot a line using the line command:
code is the following
a = [0 0]; b = [40 0];
line(a,b, 'color', 'k','LineWidth',2)
However, when I plot I get a line from (0,0) to (0,40) like so:
I have absolutely no idea why this is happening and have tried running on a friend's computer to make sure I am not going crazy. Please let me know if there is a glaring issue here that I have missed or how I can fix this. Thanks in advance

采纳的回答

Walter Roberson
Walter Roberson 2020-2-20
The first parameter is a list of x coordinates. The second parameter is a list of y coordinates.
The parameters are not source xy pair and destination xy pair.
  2 个评论
madhan ravi
madhan ravi 2020-2-20
Yes , got stuck in this for a while and it is clear now :)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by