フィルターのクリア

Subplots with multiple axes

4 ビュー (過去 30 日間)
Emily Gallagher
Emily Gallagher 2019 年 9 月 17 日
回答済み: darova 2019 年 9 月 18 日
I am trying to plot a figure with four subplots. This is what I am entering but it is only producing one graph. Any advice?
n=1:10;
subplot(1,10,n);
plot(x,y,'.-');
subplot(1,10,n);
semilogx(x,y);
subplot(1,10,n);
semilogy(x,y);
subplot(1,10,n);
loglog(x,y);

採用された回答

darova
darova 2019 年 9 月 18 日
I think you mean this
n = 10; % 10 subplot but only 4 of them are used ?
subplot(1,n,1);
plot(x,y,'.-');
subplot(1,n,2);
semilogx(x,y);
subplot(1,n,3);
semilogy(x,y);
subplot(1,n,4);
loglog(x,y);

その他の回答 (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