Plots with stairs and inclines?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Thanos Maravel
el 24 de Abr. de 2017
Comentada: Thanos Maravel
el 24 de Abr. de 2017
Assume I need to create a plot including both gentle slides and abrupt steps, such as the attached plot (note the step-like drop at vertical 2 versus the incremental slope of vertical 2-3).
To my understanding, plot() only produces the latter, while stairs() the former. How can I produce both, aside from piecing it together using several 'identical but distinct' lines on the same figure (not optimal).
0 comentarios
Respuesta aceptada
Andrew Newell
el 24 de Abr. de 2017
I'm not sure how you intend to generate the points, but for the example plot you gave, plot works just fine with an appropriate input:
x = [0:2 2:5];
y = [0 1 2 1 -1 0 0];
plot(x,y)
axis([0 5 -3 3])
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!