makeSubplotScalesEq​ual(h,w,IDX, FIG )

版本 1.0.0.0 (1.2 KB) 作者: Sanjay
Function to make the scales of subplots the same as each other
133.0 次下载
更新时间 2014/11/2

查看许可证

Often we use subplots to compare data.
This means we want the scales to be comparable.
This function goes through subplots and finds the one with the largest scaling. It then applies this scale to each of the other subplots.
The syntax is like subplot:

for i=1:6
subplot(2,3,i);
plot( rand(3) );
end
makeSubplotScalesEqual(2,3, [1:6] )

or simply

makeSubplotScalesEqual(2,3) % for all 6 subplots

This makes each of the 6 plots have equal limits.
The function also sets colour limits, e.g. for image() plots.
The function can also operate across multiple figures.

引用格式

Sanjay (2024). makeSubplotScalesEqual(h,w,IDX, FIG ) (https://www.mathworks.com/matlabcentral/fileexchange/48330-makesubplotscalesequal-h-w-idx-fig), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2010b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Subplots 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0