how to make pictures in subplot to same size?
26 ビュー (過去 30 日間)
古いコメントを表示
how to make pictures in subplot to same size?
this is my result
and i wanna make like this
this is my figure code
subplot(1,3,1)
contourf(lon_310, dep_106, temp_310_mat,40, 'LineStyle','None')
axis ij
xlabel('Longitude (°)');
ylabel('Depth (m)');
c = colorbar;
c.Label.String = 'Temperature (℃)';
c.Label.FontSize = 11;
colormap jet
title('KODC 정선 310 SST');
subplot(1,3,2)
set(gcf, 'color', 'w', 'Units', 'Normalized', 'OuterPosition', [0.1 0.1 0.5 0.6]);
m_proj('mercator', 'lon',[123 132], 'lat',[33 42]);
m_contourf(lon_s, lat_s, sst_s, 30, 'LineColor','None')
colorbar
title('OSTIA SST');
c = colorbar;
c.Label.String = 'Temperature(°C)';
C.Label.FontSize = 13;
colormap jet
m_coast('patch', [.9 .9 .9], 'linestyle', 'none');
m_grid('fontsize',12, 'tickdir','in');
subplot(1,3,3)
contourf(lon_106, dep_106, temp_106_mat,40, 'LineStyle','None')
axis ij
xlabel('Longitude (°)');
ylabel('Depth (m)');
c = colorbar;
c.Label.String = 'Temperature (℃)';
c.Label.FontSize = 11;
colormap jet
title('KODC 정선 106 SST');
0 件のコメント
回答 (1 件)
Prateek Rai
2021 年 11 月 21 日
Hi,
You can refer to the following MATLAB Answer post on "How to plot all images to same size in subplot" to get more idea.
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!