Add horizontal and vertical lines
How many times have you done something like this?
% BEGIN draw a horizontal line
xMin = 0; xMax = 10; % the current extents of the x axis
yVal = 12;
hold on
plot([xMin xMax], [yVal, yVal])
hold off
% END draw a horizontal line
Hline and Vline are simple but useful tools that draw a horizontal line at the given Y value from the left most extent of the axes to the right most. There is a similar command for vertical lines. You can replace the above with:
hline(yVal)
and be done with it.
댓글
댓글을 남기려면 링크 를 클릭하여 MathWorks 계정에 로그인하거나 계정을 새로 만드십시오.