How to plot a line on the histogram?
50 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
yogan sganzerla
am 7 Jun. 2017
Beantwortet: RBEngineer
am 27 Apr. 2020

Hello,
My name is Yogan and I am studying Monte Carlos Method. I plotted the graphic using "Hist(Name_Variable)"
I am adding above the gráphic that I am talking.
Well, My question is: I need to draw a vertical line in a specific point . I found a lot of answers about draw lines using the Plot, but it dosen't happend with Hist.
Thanks
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 7 Jun. 2017
Bearbeitet: Image Analyst
am 7 Jun. 2017
Use line
hold on;
line([x, x], ylim, 'LineWidth', 2, 'Color', 'r');
where x is the value you want the vertical line drawn at, for example 700:
line([700, 700], ylim, 'LineWidth', 2, 'Color', 'r');
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Histograms finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!