フィルターのクリア

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 Center および File ExchangeSubplots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by