Good multiple panel in 1 figure
7 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone..
do you know how make this figure (2 or 3 panel in 1 figure)?
i'm using subplot but i'm not satisfying about the result..
here for example
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168029/image.jpeg)
as you seeing, top panel with bottom panel has good relation time axis and
contour panel with right panel has good relation y axis
how do that?
thx
0 件のコメント
回答 (1 件)
Benjamin Kraus
2018 年 1 月 24 日
Unfortunately, subplot won't work well for that kind of layout. Your best bet is to manually set the Position property of the individual axes to align them.
For example:
mainax = axes('Position',[0.1 0.1 0.5 0.5],'Box','on');
topax = axes('Position',[0.1 0.65 0.5 0.25],'XAxisLocation','top','Box','on');
rightax = axes('Position',[0.65 0.1 0.25 0.5],'YAxisLocation','right','Box','on');
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!