avatar
f*e
1
要画两个图,我用了subplot function.
可是不知道怎样分别!!
给两个subplots加上标题,坐标名称。以下是我的code,但不work.

subplot(2,1,1) ;
title('title 1','fontsize',12);
xlabel('x 1');
ylabel('y 1');
plot(y,x);
grid on;

subplot(2,1,2) ;
title('title 2','fontsize',12)
xlabel('x 2');
ylabel('y 2');
plot(y,x) ;
grid on;
avatar
f*d
2
subplot(2,1,1);
plot(y,x);
title('title 1','fontsize',12);
xlabel('x 1');
ylabel('y 1');
grid on;
subplot(2,1,2) ;
plot(y,x) ;
title('title 2','fontsize',12)
xlabel('x 2');
ylabel('y 2');
grid on;

【在 f****e 的大作中提到】
: 要画两个图,我用了subplot function.
: 可是不知道怎样分别!!
: 给两个subplots加上标题,坐标名称。以下是我的code,但不work.
:
: subplot(2,1,1) ;
: title('title 1','fontsize',12);
: xlabel('x 1');
: ylabel('y 1');
: plot(y,x);
: grid on;

avatar
f*e
3
thanks!

【在 f**d 的大作中提到】
: subplot(2,1,1);
: plot(y,x);
: title('title 1','fontsize',12);
: xlabel('x 1');
: ylabel('y 1');
: grid on;
: subplot(2,1,2) ;
: plot(y,x) ;
: title('title 2','fontsize',12)
: xlabel('x 2');

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。