由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - matlab help
相关主题
matlab可以画这样的图吗[转载] Re: matlab作图问题
matlab里subplot问题ask a mathematica plotting quesiton
请问:matlab里用subplot后怎么加一个总的title请问matlab R2006a (7.2.0.232)输出eps文件为什么大不一样?
如何fix图形中的 legend 大小matlab求助
请问什么函数可以拟合横坐标纵坐标都是对数的渐进线How to make 3d plots in Matlab?
matlab 问题A MATLAB GUI Design question
a question about gnuplotstaggered v.s. collocated grids
[转载] matlab作图问题matlab 问题 求教
相关话题的讨论汇总
话题: subplot话题: title话题: ylabel话题: xlabel话题: fontsize
进入Computation版参与讨论
1 (共1页)
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');

1 (共1页)
进入Computation版参与讨论
相关主题
matlab 问题 求教请问什么函数可以拟合横坐标纵坐标都是对数的渐进线
grid or cluster?matlab 问题
Is anyone here work on CFD?a question about gnuplot
Hermite interpolation[转载] matlab作图问题
matlab可以画这样的图吗[转载] Re: matlab作图问题
matlab里subplot问题ask a mathematica plotting quesiton
请问:matlab里用subplot后怎么加一个总的title请问matlab R2006a (7.2.0.232)输出eps文件为什么大不一样?
如何fix图形中的 legend 大小matlab求助
相关话题的讨论汇总
话题: subplot话题: title话题: ylabel话题: xlabel话题: fontsize