I am using the plotmatrix function for matrices of 13 variables and around 1700 points. Unfortunately the distribution of this data is very unusual, therefore the scales (xlim and ylim) of the plots come out very different.
Since i am more interested on using the plotmatrices as a quick guide to glance at the covariance structure, i chose to sacrifice legibility of the cloud of points for uniform xlims and ylims. Unfortunately, i could not find any easy manner to do so other than manually clicking and editing the scales. And since it seems every time i edit a single number Matlab reprocesses the whole plot (because my old processor goes wild with activity), this is bound to take a long, long time :(
Thanks in advance for any help =)
here is a suggestion to equal the x-limits:
ah = get(gcf,'children') ;
xlim = get(ah,'xlim') ;
xlim = cat(1,xlim{:}) ;
set(ah,'xlim',[min(xlim(:,1)) max(xlim(:,2))]) ;
hth
Jos
1 - select one scatter plot (xlim and ylim appear below);
2 - press ctrl+a (select all);
3 - change parameters;
4 - wait for processing if your cpu is slow or the data set is too large;
5 - ???
6 - PROFIT!