Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How to add a reference horizontal line to an existing plot
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
TRISHITA BANERJEE
el 11 de Jun. de 2018
Cerrada: TRISHITA BANERJEE
el 13 de Jun. de 2018
I want to add a reference horizontal line at about -86 db in my plot.How can I do it
0 comentarios
Respuesta aceptada
Más respuestas (1)
KSSV
el 11 de Jun. de 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 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!