How to setting one horizontal axis for 2 subplot?

Hi all,
I have a question about subplot. How can we plot 2 suplots, but only one horizontal axis.
subplot(3, 1, 1:2);
plot(rand(10, 1), 'b.-', 'LineWidth', 2);
grid on;
subplot(3, 1, 3);
plot(rand(10, 1), 'b.-', 'LineWidth', 2);
grid on;
My expection as:
Thank you so much

 Respuesta aceptada

VBBV
VBBV el 11 de Oct. de 2022
Editada: VBBV el 12 de Oct. de 2022
subplot(3, 1, 1:2);
plot(rand(10, 1), 'b.-', 'LineWidth', 2);
xticks(1:10)
grid on;
xticklabels({})
subplot(3, 1, 3);
plot(rand(10, 1), 'b.-', 'LineWidth', 2);
grid on;

3 comentarios

galaxy
galaxy el 12 de Oct. de 2022
Thank you so much your answer.
But, you can see that grid 2 subplot does not same.
How to fix it?
VBBV
VBBV el 12 de Oct. de 2022
add xticks
galaxy
galaxy el 12 de Oct. de 2022
Thank you so much.
It is OK

Iniciar sesión para comentar.

Más respuestas (1)

Martin Pryde
Martin Pryde el 12 de Oct. de 2022
Editada: Martin Pryde el 12 de Oct. de 2022
ax1 = subplot(3,1,1:2);
plot(ax1,rand(10,1),'b.-','LineWidth',2);
ax2 = subplot(3, 1, 3);
plot(ax2,rand(10,1),'b.-','LineWidth',2);
grid(ax1,'on');
xlim(ax1,[1,10]);
xticks(ax1,1:10);
xticklabels(ax1,{})
grid(ax2,'on');
xticks(ax2,1:10);
xlim(ax2,[1,10]);

Productos

Versión

R2019b

Etiquetas

Preguntada:

el 11 de Oct. de 2022

Editada:

el 12 de Oct. de 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by