How to add a horizontal line in a bar plot????
121 ビュー (過去 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!