How to plot a dotted black line (without using yline function)?
Mostrar comentarios más antiguos
How do I plot a horizontal dotted black line going from 0 to the maximum value of x? The height of the line should be 0. I cannot use the yline function. Thank you!
4 comentarios
darova
el 29 de Sept. de 2019
What about usign plot()? Is it possible?
Rik
el 29 de Sept. de 2019
And maybe also add a listener to make sure the line is extended when the x range changes.
Adam Danz
el 29 de Sept. de 2019
Darova's ide:
yln = plot([0,max(xlim())],[0,0], 'k--');
I like Rik's idea, too. Here's some background info
Adam Danz
el 29 de Sept. de 2019
or,
matlab.graphics.chart.decoration.ConstantLine('InterceptAxis', 'y', 'Value', 0.5,'Parent',gca, 'LineStyle','--','Color', 'k')
Respuestas (0)
Categorías
Más información sobre MATLAB Coder en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!