请问matlab中如何将两个figure放在一起figure(1);x=-4:0.5:4;y=x[X,Y]=meshgrid(x,y);Z=X.^2+Y.^2;subplot(211)mesh(Z)h=mesh(Z)figure(2);m=-4:0.5:4;n=m[M,N]=meshgrid(m,n);A=M.^2+N.^2;subplot(211)mesh(A)h=mesh(A)set(h,'facecolor','m','edgecolor',
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/18 19:56:34
请问matlab中如何将两个figure放在一起figure(1);x=-4:0.5:4;y=x[X,Y]=meshgrid(x,y);Z=X.^2+Y.^2;subplot(211)mesh(Z)h=mesh(Z)figure(2);m=-4:0.5:4;n=m[M,N]=meshgrid(m,n);A=M.^2+N.^2;subplot(211)mesh(A)h=mesh(A)set(h,'facecolor','m','edgecolor',
请问matlab中如何将两个figure放在一起
figure(1);
x=-4:0.5:4;
y=x
[X,Y]=meshgrid(x,y);
Z=X.^2+Y.^2;
subplot(211)
mesh(Z)
h=mesh(Z)
figure(2);
m=-4:0.5:4;
n=m
[M,N]=meshgrid(m,n);
A=M.^2+N.^2;
subplot(211)
mesh(A)
h=mesh(A)
set(h,'facecolor','m','edgecolor',[1 1 1],'marker','o','markeredgecolor','b')
hold on;
每次加载后都是两个figure没有办法把他们平起来
还有如何插入文字》
我希望能在第一个figure中插入三维网格图
第二个figure中插入三维曲线图
请问matlab中如何将两个figure放在一起figure(1);x=-4:0.5:4;y=x[X,Y]=meshgrid(x,y);Z=X.^2+Y.^2;subplot(211)mesh(Z)h=mesh(Z)figure(2);m=-4:0.5:4;n=m[M,N]=meshgrid(m,n);A=M.^2+N.^2;subplot(211)mesh(A)h=mesh(A)set(h,'facecolor','m','edgecolor',
figure(1);
x=-4:0.5:4;
y=x
[X,Y]=meshgrid(x,y);
Z=X.^2+Y.^2;
subplot(211)
mesh(Z)
h=mesh(Z)
% figure(2);
m=-4:0.5:4;
n=m
[M,N]=meshgrid(m,n);
A=M.^2+N.^2;
subplot(212)
mesh(A)
h=mesh(A)
set(h,'facecolor','m','edgecolor',[1 1 1],'marker','o','markeredgecolor','b')
hold on;