How to add a dashed horizontal line at 0 using plot function?

 채택된 답변

Adam Danz
Adam Danz 2019년 9월 29일
편집: Adam Danz 2019년 10월 2일
Here are 3 options to add a dashed horizontal line to a plot. The 1st option is recommended if you're using matlab r2018b or later.
% Use yline() to plot a horizontal line at y=0 (requires r2018b or later)
% https://www.mathworks.com/help/matlab/ref/yline.html
% This will automatically adjust if your xlim changes.
yline(0,'k--')
% Plot a line at y=0 that spans from x=0 to x=5
plot([0,5],[0,0], 'k--')
% Plot a line at y=0 that spans the current x-limits of your axes
plot([min(xlim()),max(xlim())],[0,0], 'k--')

댓글 수: 3

@Adam Danz i wanted to plot a line at y=0.2
so i wrote plot([0,8000],[0.2 ,0.2])
but it is giving me a line at y=0;what should i change in the code?
If you zoom into the line you will see that it is plotted at y=0.2.
yes,got it,thanks

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

제품

질문:

2019년 9월 29일

댓글:

2021년 7월 1일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by