How to plot lines between all these points

1 visualización (últimos 30 días)
S. David
S. David el 14 de Abr. de 2011
Hi,
I have a matrix V, which is a 5-by-2 matrix, where each row represents a point in the xy-plain. How can I connect these points together in MATLAB, please?
Thanks in advance

Respuesta aceptada

Matt Fig
Matt Fig el 15 de Abr. de 2011
Does this do what you need?
V(6,:) = V(1,:); % To connect at the end. Assumes size(V,1) = 5;
line(V(:,1),V(:,2))
  4 comentarios
Matt Fig
Matt Fig el 15 de Abr. de 2011
V(6,:) = V(1,:);
line(V(:,1),V(:,2),V(:,3))
S. David
S. David el 15 de Abr. de 2011
This did not work, I just got two crossed lines in 2D. Why?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by