Borrar filtros
Borrar filtros

Create a startpoint in form of a ring on my graph

1 visualización (últimos 30 días)
Cillian
Cillian el 26 de Jun. de 2012
Hi!
I wonder how to create a marker in form of a "ring/circle" on my startpoint a graph?
Thanks Cillian

Respuesta aceptada

Thomas
Thomas el 26 de Jun. de 2012
try
a=[1 2 3 4]; %data to be plotted
plot(a)
hold on
plot(a(1),'o','MarkerSize',10) % start point with circle
  6 comentarios
Thomas
Thomas el 27 de Jun. de 2012
try the following
plot3(YOUT(:,1),YOUT(:,2),YOUT(:,3),'b') % your actual plot
hold on
plot3(YOUT(1,1),YOUT(1,2),YOUT(1,3),'o','MarkerSize',10) % start point
Cillian
Cillian el 27 de Jun. de 2012
Thanks again, it works great. :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by