Adding Vertical Lines to all Points on Plot

13 visualizaciones (últimos 30 días)
Ziv Melamed
Ziv Melamed el 6 de Dic. de 2018
Comentada: Star Strider el 6 de Dic. de 2018
I want to keep my question as simple and to the point as possible. I have a scatter plot that marks points (ex: T=[5 10 100 1000 10000]; I want to add a vertical line for each point marked on the plot but I do not want to add each line manually. Is there a line function I can use to have it put a vertical line from each of my "T" points on the scatter plot?

Respuesta aceptada

Star Strider
Star Strider el 6 de Dic. de 2018
See if any of these do what you want:
T=[5 10 100 1000 10000];
figure
stem(T, 'filled')
grid
figure
stem(T, ones(size(T)))
grid
figure
stem(T, 'Marker','none')
grid
  2 comentarios
Ziv Melamed
Ziv Melamed el 6 de Dic. de 2018
That worked! Thanks!
Star Strider
Star Strider el 6 de Dic. de 2018
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Scatter Plots 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