How to modify subplots to create a new subplots?

조회 수: 75 (최근 30일)
Mibang
Mibang 2024년 4월 10일 22:34
댓글: Mibang 2024년 4월 11일 18:17
I have two figures as attached. Each figure has 3x1 subplots.
open pvc4.fig
open pac4.fig
  1. In pac4.fig, how to make the TickLabels of the first two figures the same, i.e., either make it as "N, V, n/a" or "A, N, V, n/a" consistently?
  2. In pac4.fig, how to remove the thrid plot and make the figure having only two first subplots? So, I want to make it only two subplots.
  3. I want to take first two subplots of pac4.fig and take the first two subplots of pvc4.fig. So, I want to put those 4 subplots in one figure (4x4 subplots) together. The first two subplots of pac4.fig go the left side and the first two subplots of pvc4.fig go the right side of the figure.
Thank you very much,

채택된 답변

Matt J
Matt J 2024년 4월 10일 23:40
편집: Matt J 2024년 4월 11일 0:27
close all
H(1)=openfig('pac4.fig'); ax1=flip(findobj(H(1),'Type','axes'));
H(2)=openfig('pvc4.fig'); ax2=flip(findobj(H(2),'Type','axes'));
ax=[ax1(1:2);ax2(1:2)];
xt=[0.125,0.375,0.625,0.875];
xtl={'n/a','V','N','A'};
figure;
t=tiledlayout(2,2);
ax(1).Parent=t;
ax(1).Layout.Tile=1;
ax(2).Parent=t;
ax(2).Layout.Tile=3;
ax(3).Parent=t;
ax(3).Layout.Tile=2;
ax(4).Parent=t;
ax(4).Layout.Tile=4;
close(H);
for i=1:4, colorbar(ax(i),'off'); end
h=colorbar('Ticks',xt,'TickLabels',xtl); h.Layout.Tile='east';
  댓글 수: 12
Matt J
Matt J 2024년 4월 11일 17:46
편집: Matt J 2024년 4월 11일 17:48
  1. I haven't done anything to change the line colors. That was what was in the .fig files.
  2. I fixed it, but you have an additional line in your data somewhere that is black.
Mibang
Mibang 2024년 4월 11일 18:17
Right, I think this is not possible unless I plot again with the original data with careful plan for colors.
Thank you very much for your effort and time.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Object Properties에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by