f****e 发帖数: 15 | 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; | f**d 发帖数: 768 | 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;
| f****e 发帖数: 15 | 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');
|
|