Struggling with line()

1 visualización (últimos 30 días)
Arjun Muralidaran
Arjun Muralidaran el 20 de Feb. de 2020
Comentada: Arjun Muralidaran el 20 de Feb. de 2020
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

Respuesta aceptada

Walter Roberson
Walter Roberson el 20 de Feb. de 2020
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 comentarios
madhan ravi
madhan ravi el 20 de Feb. de 2020
Yes , got stuck in this for a while and it is clear now :)
Arjun Muralidaran
Arjun Muralidaran el 20 de Feb. de 2020
Thank you sir!

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by