赞
踩
通常,我们在用matlab进行绘图的时候,有时候需要在同一个figure里使用不同的colorbar来区别不同的图,例如,光的强度和相位。但一般情况下是实现不了这种功能的,这里我们举个例子来说明。
首先,我们任意构造三个矩阵,希望能用不同的colorbar将三张矩阵的图在同一个figure里显示:
- clear;
- x=linspace(-1,1,512);
- y=x;
- [X,Y]=meshgrid(x,y);
- Z=sqrt(X.^2+Y.^2);
- figure()
- subplot(1,3,1),imshow(X,[]),colormap(jet),title('X')
- subplot(1,3,2),imshow(Y,[]),colormap(hot),title('Y')
- subplot(1,3,3),imshow(Z,[]),colormap(parula),title('Z')
以上代码很简单,就是产生X,Y,Z三个矩阵,然后我们希望用三种不同的colorbar显示出来,但实际的效果是三个矩阵都是默认以最后一个colorbar,即parula来显示的,如图:
那么怎么去解决这个问题呢?非常简单,我们去下载一个函数,这个函数为freezeColors。下载下来后与所运行程序放到同一文件夹下,然后在画图的时候加入如下命令:
- figure()
- subplot(1,3,1),imshow(X,[]),colormap(jet),title('X')
- freezeColors;
- subplot(1,3,2),imshow(Y,[]),colormap(hot),title('Y')
- freezeColors;
- subplot(1,3,3),imshow(Z,[]),colormap(parula),title('Z')
就可以实现需要的图了。
freezeColors函数下载地址:https://github.com/jiversen/freezeColors
更多详情关注公众号“光学师兄的日常”
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。