How to plot vertical lines for each data point?

Illustration
juliavins03 - 2020-03-19T13:22:15+00:00
Question: How to plot vertical lines for each data point?

I have a line graph plot which is giving me a correct figure looking like the following:   However, my task is to recreate a zonation simulating the following figure: I therefore need to add vertical lines to the plot at each data point along the x axis.Any help would be greatly appreciated.

Expert Answer

Profile picture of Kshitij Singh Kshitij Singh answered . 2025-11-20

Combine a plot plot (or a line plot) and a stem plot.

x = 0:10;
y = x.^2;
plot(x, y);
hold on;
stem(x, y, 'Marker', 'none');


Not satisfied with the answer ?? ASK NOW

Get a Free Consultation or a Sample Assignment Review!