Change figure size based on the number of nexttile
19 次查看(过去 30 天)
显示 更早的评论
I want to generate a figure of many imagesc using tiledlayout('flow'). How can I make my figure size adjust depending on the number of nexttile used in a loop? Is there any way I can set the size for each individual in tiledlayout? So that the figure appreance will not depend on the number of loop iteration.
I found some thing similar with what I am looking for here but I want to do it in a reserve way
Thank you
0 个评论
回答(1 个)
dpb
2022-5-15
编辑:dpb
2022-5-15
Well, when you use the 'flow' option, that's what you've told tiledlayout you want -- the size/location of the figures to update dynamically when each nexttile call comes.
If you want a fixed layout, then use the tiledlayout(m,n) option where you define how many and the orientation a priori and then fill in the content when you get there.
There are some options to control the amount of whitespace between tiles to adapt the appearance but individual axes positions/sizes are not modifiable with the 'Position'properties of a normal axes object.
There is an ability to nest layouts to create nonuniformly-sized charts, see the properties documentation 'Layout' property for the details on that.
But, if you don't want the sizes changing dynamically, don't use 'flow'
5 个评论
dpb
2022-5-16
AHa! That, indeed, is a different problem. Yes, you can make the figure width/height a function of the m,n layout numbers. NB: you can retrieve the actual monitor pixel size from the groot stucture that can give you the limits of the current monitor that you could scale to.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Specifying Target for Graphics Output 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!