How to create one common colorbar and colorscale for subplots
56 次查看(过去 30 天)
显示 更早的评论
Dear all,
I would like to add one common colorbar to all subplots shown below. Here it is very important that the all subplots should be on the same color scale. Subplot (4,2,4) with max 60 rain rate should then be showing much more yellow pixels than the other ones. I cannot find a way to do this within the loop below. Help is very much appreciated. :-) I am using the subplot function https://de.mathworks.com/matlabcentral/fileexchange/3696-subaxis-subplot to decrease the empty space between the subplots.
lat = load('latS.mat');
latS = lat.latS;
lon = load('lonS.mat');
lonS = lon.lonS;
rain = load('rain_test.mat');
rain_test = rain.rain_test;
figure
for i = 1 : 8;
subaxis(4,2,i, 'Spacing', 0.03, 'Padding', 0.0, 'Margin', 0.03);
pcolor(lonS,latS,rain_test(:,:,i));shading flat
%geoshow('landareas.shp', 'facecolor', 'k');
xlabel('longitude (°)'); ylabel('latitude (°)');
%h=colorbar;
%set(get(h,'ylabel'),'String','Rain rate (mm/h)');
hold on
plot(179.5,-14.2,'r*')
axis tight
axis off
end
0 个评论
采纳的回答
Chunru
2021-11-17
You need to add in the following inside the loop for each subplot:
caxis([0 60]); % adjust the number 60 or find the value from all data first
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subplots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!