How to add a horizontal line in a bar plot????

55 visualizzazioni (ultimi 30 giorni)
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!

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 1 Feb 2013
Modificato: Azzi Abdelmalek il 1 Feb 2013
xlim=get(gca,'xlim');
hold on
plot(xlim,[30 30])
  2 Commenti
Image Analyst
Image Analyst il 1 Feb 2013
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.
Thor
Thor il 2 Feb 2013
bar(X);
hold on
plot(xlim,[30 30], 'r')
works too! Thank you all!

Accedi per commentare.

Più risposte (1)

Vivian Hauss
Vivian Hauss il 19 Lug 2016
Modificato: Vivian Hauss il 19 Lug 2016
A bit shorter:
hline(30,':k','This Line is horizontal')

Community Treasure Hunt

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

Start Hunting!

Translated by