I am currently trying to plot a simple vertical and horizontal lines in MATLAB.
For instance, I would like to plot the line y=245. How would I do that?
2 simple ways:
plot(0:0.001:1, 25); line('XData', [0 1], 'YData', [25 25]);