-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnarrow_colorbar.m
executable file
·219 lines (192 loc) · 7.14 KB
/
narrow_colorbar.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
function handle=narrow_colorbar(loc)
%COLORBAR Display color bar (color scale).
% COLORBAR('vert') appends a vertical color scale to the current
% axis. COLORBAR('horiz') appends a horizontal color scale.
%
% COLORBAR(H) places the colorbar in the axes H. The colorbar will
% be horizontal if the axes H width > height (in pixels).
%
% COLORBAR without arguments either adds a new vertical color scale
% or updates an existing colorbar.
%
% H = COLORBAR(...) returns a handle to the colorbar axis.
% Clay M. Thompson 10-9-92
% Copyright (c) 1984-98 by The MathWorks, Inc.
% $Revision: 5.31 $ $Date: 1998/07/24 18:08:03 $
% If called with COLORBAR(H) or for an existing colorbar, don't change
% the NextPlot property.
% Aug. '00 - modified, to make it narrower (A.Shcherbina)
changeNextPlot = 1;
if nargin<1, loc = 'vert'; end
% Catch colorbar('delete') special case -- must be called by the deleteFcn.
if nargin==1 & strcmp(loc,'delete'),
ax = gcbo;
if strcmp(get(ax,'tag'),'TMW_COLORBAR'), ax=get(ax,'parent'); end
ud = get(ax,'userdata');
if isfield(ud,'PlotHandle') & ishandle(ud.PlotHandle) & ...
isfield(ud,'origPos') & ~isempty(ud.origPos)
units = get(ud.PlotHandle,'units');
set(ud.PlotHandle,'units','normalized');
set(ud.PlotHandle,'position',ud.origPos);
set(ud.PlotHandle,'units',units);
end
if isfield(ud,'DeleteProxy') & ishandle(ud.DeleteProxy)
delete(ud.DeleteProxy)
end
if ~isempty(legend)
legend % Update legend
end
return
end
ax = [];
if nargin==1,
if ishandle(loc)
ax = loc;
if ~strcmp(get(ax,'type'),'axes'),
error('Requires axes handle.');
end
units = get(ax,'units'); set(ax,'units','pixels');
rect = get(ax,'position'); set(ax,'units',units)
if rect(3) > rect(4), loc = 'horiz'; else loc = 'vert'; end
changeNextPlot = 0;
end
end
% Determine color limits by context. If any axes child is an image
% use scale based on size of colormap, otherwise use current CAXIS.
ch = get(gcda,'children');
hasimage = 0; t = [];
cdatamapping = 'direct';
for i=1:length(ch),
typ = get(ch(i),'type');
if strcmp(typ,'image'),
hasimage = 1;
cdatamapping = get(ch(i), 'CDataMapping');
elseif strcmp(typ,'surface') & ...
strcmp(get(ch(i),'FaceColor'),'texturemap') % Texturemapped surf
hasimage = 2;
cdatamapping = get(ch(i), 'CDataMapping');
elseif strcmp(typ,'patch') | strcmp(typ,'surface')
cdatamapping = get(ch(i), 'CDataMapping');
end
end
if ( strcmp(cdatamapping, 'scaled') )
% Treat images and surfaces alike if cdatamapping == 'scaled'
t = caxis;
d = (t(2) - t(1))/size(colormap,1);
t = [t(1)+d/2 t(2)-d/2];
else
if hasimage,
t = [1, size(colormap,1)];
else
t = [1.5 size(colormap,1)+.5];
end
end
h = gcda;
if nargin==0,
% Search for existing colorbar
ch = get(findobj(gcf,'type','image','tag','TMW_COLORBAR'),{'parent'}); ax = [];
for i=1:length(ch),
ud = get(ch{i},'userdata');
d = ud.PlotHandle;
if prod(size(d))==1 & isequal(d,h),
ax = ch{i};
pos = get(ch{i},'Position');
if pos(3)<pos(4), loc = 'vert'; else loc = 'horiz'; end
changeNextPlot = 0;
% Make sure image deletefcn doesn't trigger a colorbar('delete')
% for colorbar update
set(get(ax,'children'),'deletefcn','')
break;
end
end
end
origNextPlot = get(gcf,'NextPlot');
if strcmp(origNextPlot,'replacechildren') | strcmp(origNextPlot,'replace'),
set(gcf,'NextPlot','add')
end
if loc(1)=='v', % Append vertical scale to right of current plot
if isempty(ax),
units = get(h,'units'); set(h,'units','normalized')
pos = get(h,'Position');
[az,el] = view;
stripe = 0.025; edge = 0.02;
if all([az,el]==[0 90]), space = 0.05; else space = .1; end
set(h,'Position',[pos(1) pos(2) pos(3)*(1-stripe-edge-space) pos(4)])
rect = [pos(1)+(1-stripe-edge)*pos(3) pos(2) stripe*pos(3) pos(4)];
ud.origPos = pos;
% Create axes for stripe and
% create DeleteProxy object (an invisible text object in
% the target axes) so that the colorbar will be deleted
% properly.
ud.DeleteProxy = text('parent',h,'visible','off',...
'tag','ColorbarDeleteProxy',...
'handlevisibility','off',...
'deletefcn','eval(''delete(get(gcbo,''''userdata''''))'','''')');
ax = axes('Position', rect);
setappdata(ax,'NonDataObject',[]); % For DATACHILDREN.M
set(ud.DeleteProxy,'userdata',ax)
set(h,'units',units)
else
axes(ax);
ud = get(ax,'userdata');
end
% Create color stripe
n = size(colormap,1);
image([0 1],t,(1:n)','Tag','TMW_COLORBAR','deletefcn','colorbar(''delete'')'); set(ax,'Ydir','normal')
set(ax,'YAxisLocation','right')
set(ax,'xtick',[])
% set up axes deletefcn
set(ax,'tag','Colorbar','deletefcn','colorbar(''delete'')')
elseif loc(1)=='h', % Append horizontal scale to top of current plot
if isempty(ax),
units = get(h,'units'); set(h,'units','normalized')
pos = get(h,'Position');
stripe = 0.025; space = 0.1;
set(h,'Position',...
[pos(1) pos(2)+(stripe+space)*pos(4) pos(3) (1-stripe-space)*pos(4)])
rect = [pos(1) pos(2) pos(3) stripe*pos(4)];
ud.origPos = pos;
% Create axes for stripe and
% create DeleteProxy object (an invisible text object in
% the target axes) so that the colorbar will be deleted
% properly.
ud.DeleteProxy = text('parent',h,'visible','off',...
'tag','ColorbarDeleteProxy',...
'handlevisibility','off',...
'deletefcn','eval(''delete(get(gcbo,''''userdata''''))'','''')');
ax = axes('Position', rect);
setappdata(ax,'NonDataObject',[]); % For DATACHILDREN.M
set(ud.DeleteProxy,'userdata',ax)
set(h,'units',units)
else
axes(ax);
ud = get(ax,'userdata');
end
% Create color stripe
n = size(colormap,1);
image(t,[0 1],(1:n),'Tag','TMW_COLORBAR','deletefcn','colorbar(''delete'')'); set(ax,'Ydir','normal')
set(ax,'ytick',[])
% set up axes deletefcn
set(ax,'tag','Colorbar','deletefcn','colorbar(''delete'')')
else
error('COLORBAR expects a handle, ''vert'', or ''horiz'' as input.')
end
if ~isfield(ud,'DeleteProxy'), ud.DeleteProxy = []; end
if ~isfield(ud,'origPos'), ud.origPos = []; end
ud.PlotHandle = h;
set(ax,'userdata',ud)
axes(h)
set(gcf,'NextPlot',origNextPlot)
% if ~isempty(legend)
% legend % Update legend
% end
if nargout>0, handle = ax; end
%--------------------------------
function h = gcda
%GCDA Get current data axes
h = datachildren(gcf);
if isempty(h) | any(h == gca)
h = gca;
else
h = h(1);
end