subplot in matlab
8 ビュー (過去 30 日間)
古いコメントを表示
how to plot 9x3 subplot using subplot command plz, let me know.
0 件のコメント
回答 (3 件)
Vivek Bhadouria
2011 年 8 月 14 日
Dear pg,
With 9*3 subplot,you will get 27 plots in a single window. Let us assume you want to plot some signals (vectors) located in your workspace named as a,b,c........z (if you are working with images then use imshow command to show an image in subplot). You can create 9*3 subplot as
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
subplot(9,3,1);plot(a);
subplot(9,3,2);plot(b);
subplot(9,3,3);plot(c);
subplot(9,3,4);plot(d);
subplot(9,3,5);plot(e);
.
.
.
.
.
subplot(9,3,26);plot(z);
subplot(9,3,27);plot(some_other_variable)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
In subplot 9*3 means,the window will be having 9 rows and 3 columns so making total of 27 subplots.
0 件のコメント
Friedrich
2011 年 8 月 12 日
Hi,
do you mean this:
subplot(9,3,1)
plot(1:10)
subplot(9,3,2)
plot(1:10)
%...and so on and finally
subplot(9,3,27)
plot(1:10)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!