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

Version 1.0.0.0 (1,2 KB) von Sanjay
Function to make the scales of subplots the same as each other
133 Downloads
Aktualisiert 2. Nov 2014

Lizenz anzeigen

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.

Zitieren als

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

Kompatibilität der MATLAB-Version
Erstellt mit R2010b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.0.0.0