How to use special subplot

조회 수: 1 (최근 30일)
Isa Duran
Isa Duran 2014년 5월 23일
댓글: Isa Duran 2014년 5월 23일
Hi guys
I have 8 plots who represents North,West,East,South an so on, so I want to make a plot where I leave the middle field empty. I have created a 3x3 subplot, but I don't know how to leave the middle empty... Here is my code.
for i=1:8 %Number of headings
subplot(3,3,i)
for j=1:length(SR)
plot(omega,Sp_we(:,i,j))
end
end
thanks

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 5월 23일
for i=[1:4 6:9] %Number of headings
subplot(3,3,i)
end
  댓글 수: 1
Isa Duran
Isa Duran 2014년 5월 23일
Thanks you Azzi

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by