ellen_idea 发表于 2009-11-4 00:09

如何让n行1列图只标注一个横坐标刻度?

如何让n行1列图只标注一个横坐标刻度?
如图所示为8行1列的图,一共标了8个横坐标刻度,如何只留下最下面的刻度而丢掉上面的七个呢?Matlab语句如何实现?
谢谢!

ChaChing 发表于 2009-11-4 00:25

subplot(2,1,1); plot(rand(5,1)); set(gca,'Xticklabel',[])
subplot(2,1,2); plot(rand(5,1));

ellen_idea 发表于 2009-11-12 19:23

原帖由 ChaChing 于 2009-11-4 00:25 发表 http://www.chinavib.com/forum/images/common/back.gif
subplot(2,1,1); plot(rand(5,1)); set(gca,'Xticklabel',[])
subplot(2,1,2); plot(rand(5,1));
谢谢!:handshake
页: [1]
查看完整版本: 如何让n行1列图只标注一个横坐标刻度?