Horizontal line in plot up to a graph
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How can I generate a horizontal line starting at x = 0 up to a graph (see figure, red line)? The x, y coordinates are of course available for the graph.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/532309/image.png)
0 comentarios
Respuestas (1)
KSSV
el 26 de Feb. de 2021
If you have the xlimits (x0,x1) and the y-value..the required equations is y = k.
x = 1:10 ;
k = 3 ;
y = k*ones(*Size(x)) ;
plot(x,y)
Also have a look on line.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!