Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
How to add a reference horizontal line to an existing plot
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
TRISHITA BANERJEE
am 11 Jun. 2018
Geschlossen: TRISHITA BANERJEE
am 13 Jun. 2018
I want to add a reference horizontal line at about -86 db in my plot.How can I do it
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
KSSV
am 11 Jun. 2018
Check the below demo code:
x = linspace(0,2*pi) ;
y = sin(x) ;
plot(x,y)
% reference line at x = 0.6
xi = linspace(min(x),max(x)) ;
yi = 0.6*ones(size(xi)) ;
hold on
plot(xi,yi) ;
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!