how to make pictures in subplot to same size?

조회 수: 40 (최근 30일)
준영 홍
준영 홍 2021년 6월 3일
답변: Prateek Rai 2021년 11월 21일
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');

답변 (1개)

Prateek Rai
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.

카테고리

Help CenterFile Exchange에서 Orange에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by