Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
How to add a reference horizontal line to an existing plot
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
TRISHITA BANERJEE
le 11 Juin 2018
Clôturé : TRISHITA BANERJEE
le 13 Juin 2018
I want to add a reference horizontal line at about -86 db in my plot.How can I do it
0 commentaires
Réponse acceptée
Plus de réponses (1)
KSSV
le 11 Juin 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 commentaires
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!