If a = [1 2 3 4 5 6 7]; and b = [1 4 7 10 7 4 1]; and the plot it by : figure,plot(a,b), how can I draw let's say a red line vertical to the value 3 and 5 in the x-axis? So that i can see the window between 3 and 5.
Prashant Kumar answered .
2025-11-20
yL = get(gca,'YLim'); line([3 3],yL,'Color','r'); line([5 5],yL,'Color','r');