How to add a horizontal line in a bar plot????
조회 수: 114 (최근 30일)
이전 댓글 표시
Dear all,
i use the command bar for a plot. I want to insert a horizontal line in a bar plot at y = 30. How can I do that? Thank you!
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 2월 1일
편집: Azzi Abdelmalek
2013년 2월 1일
xlim=get(gca,'xlim');
hold on
plot(xlim,[30 30])
댓글 수: 2
Image Analyst
2013년 2월 1일
Isn't the first line unnecessary? xlim is already the x limits - you don't have to call get() to retrieve it, it's already ready to be used "as is". xlim is actually a function itself that returns the x limits.
추가 답변 (1개)
Vivian Hauss
2016년 7월 19일
편집: Vivian Hauss
2016년 7월 19일
A bit shorter:
hline(30,':k','This Line is horizontal')
댓글 수: 1
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!