由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - matlab里subplot问题
相关主题
问一个matlab作图的问题matlab 问题
matlab可以画这样的图吗[转载] matlab作图问题
A MATLAB GUI Design question如何在Matlab中在image上叠加contours?
question on plotyy in matlab请问:matlab里用subplot后怎么加一个总的title
matlab print jpg figure axes missing请问matlab R2006a (7.2.0.232)输出eps文件为什么大不一样?
matlab helpmatlab求助
a matlab plotting questionHow to make 3d plots in Matlab?
请教一个MATLAB作图问题matlab 问题 求教
相关话题的讨论汇总
话题: colorbar话题: subplot话题: axes话题: matlab话题: contour
进入Computation版参与讨论
1 (共1页)
m*****r
发帖数: 3822
1
都是surface的图,怎么公用一个colorbar
直接colorbar的话会画在一个子图的旁边
比如3x3个图,能把colorbar放在整个大图的右边吗?
r****y
发帖数: 1437
2
As far as I know, matlab is very lame in such manipulation.
The way I did is first plot 3x3 graph, then plot one single contour
plus
colorbar. Then use photoshop to copy and paste that big colorbar to the
first
figure.


【在 m*****r 的大作中提到】
: 都是surface的图,怎么公用一个colorbar
: 直接colorbar的话会画在一个子图的旁边
: 比如3x3个图,能把colorbar放在整个大图的右边吗?

t***s
发帖数: 4666
3
you can achieve these by manipulating the properties. subplot basically
just generate a set of axes with correct sizes.

contour

【在 r****y 的大作中提到】
: As far as I know, matlab is very lame in such manipulation.
: The way I did is first plot 3x3 graph, then plot one single contour
: plus
: colorbar. Then use photoshop to copy and paste that big colorbar to the
: first
: figure.
:

r****y
发帖数: 1437
4
too time consuming comparing to mouse click in photoshop.

【在 t***s 的大作中提到】
: you can achieve these by manipulating the properties. subplot basically
: just generate a set of axes with correct sizes.
:
: contour

t***s
发帖数: 4666
5
that's true.

【在 r****y 的大作中提到】
: too time consuming comparing to mouse click in photoshop.
i**g
发帖数: 134
6
subplot之后添加一个全高度的隐藏的axes,
对这个axes添加colorbar
subplot(2,2,1); surf(rand(10));
subplot(2,2,2) ....
h=axes('position',[0.85,0.12,0.05,0.8]);
caxis([0,1]);
colorbar
set(h,'visible','off')

【在 m*****r 的大作中提到】
: 都是surface的图,怎么公用一个colorbar
: 直接colorbar的话会画在一个子图的旁边
: 比如3x3个图,能把colorbar放在整个大图的右边吗?

1 (共1页)
进入Computation版参与讨论
相关主题
matlab 问题 求教matlab print jpg figure axes missing
matlab一条curve如何plot出2个横坐标?matlab help
Re: plot a 3d surface+contour using Origin (a matlab plotting question
图中图怎么用matlab画?请教一个MATLAB作图问题
问一个matlab作图的问题matlab 问题
matlab可以画这样的图吗[转载] matlab作图问题
A MATLAB GUI Design question如何在Matlab中在image上叠加contours?
question on plotyy in matlab请问:matlab里用subplot后怎么加一个总的title
相关话题的讨论汇总
话题: colorbar话题: subplot话题: axes话题: matlab话题: contour