How to plot vertical lines for each data point?

J
juliavins03 · Mar 19, 2020 · 2.1K views
Question
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 PhD Expert
Answered Aug 20, 2026

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');
Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!