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.
Related Questions
Expert Answer
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