📄 showsinglemap.m
字号:
function ShowSingleMap(Map,MLKP,ivar,Names);
if (nargin == 3)
Label='N';
else
Label='Y';
end
[Nvar,Dummy] = size(Map);
for i=1:MLKP.Nrow
for j=1:MLKP.Ncol
Plane(i,j)=Map(ivar,(i-1)*MLKP.Ncol+j);
end
end
imagesc(Plane);
axis image %square;
colorbar
if(Label == 'Y')
title(Names);
end
colormap(MLKP.ColorMap);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -