Scaling Multiple Subplots to the Same Scale
54 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have many subplots but they are different scales. How do i make them all have a y-axis from -200 to 200? Thank you. 

2 comentarios
Walter Roberson
el 4 de Sept. de 2020
If you have a vector of the handles of the axes then you can set() the YLim property of all of them.
Respuestas (1)
Bjorn Gustavsson
el 4 de Sept. de 2020
Editada: Bjorn Gustavsson
el 8 de Sept. de 2020
A usefult tool to utilize for this is linkaxes - that allows you to something like this:
for i1 = 1:many
sph(i1) = subplot(many,1,i1)
plot(x,y)
end
linkaxes(sph,'y')
ax = axis;
axis([ax(1:2) -200 200])
This should keep ylims equal in all your subplots - if you modify it in one the others will follow.
HTH
0 comentarios
Ver también
Categorías
Más información sobre Subplots en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!