Borrar filtros
Borrar filtros

Matlab plot: create a line b/w the points except the last one?

2 visualizaciones (últimos 30 días)
Federico
Federico el 5 de Dic. de 2011
Hey guys,
I have got this plot with some points, I want to only create a line between some of them. Let's say I don't want to connect the last point on the right of the plot, but I still want to have the point.
How do I do it?
Thanks
  1 comentario
Jan
Jan el 5 de Dic. de 2011
It would be much easier to show the needed code, if you post a running example code, which produces your graphics except for the requested detail.

Iniciar sesión para comentar.

Respuestas (2)

Fangjun Jiang
Fangjun Jiang el 5 de Dic. de 2011
x=1:10;
y=1:10;
plot(x(1:end-1),y(1:end-1));
hold on;
plot(x(end),y(end),'+');

Federico
Federico el 5 de Dic. de 2011
Thank you sir. :)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by