"Stanley Jose" <
dane...@yahoo.com> wrote in message <gefkc3$n1j$
1...@fred.mathworks.com>...
> I have a data matrix thats 16x16x2000 in dimension to be plotted on a single figure window. I therefore have to use 256 subplots. The result of which is that the signal changes in each subplot is lost(all i get is straight lines in each subplot which is not the case when each of them is plotted on separate windows) which is understandable. Is there a way to utilise the dead space between subplots in order to increase the size of each subplot window. I have turned the axis off but this doesnt seem to expand the subplots.
> Hoping to get some help.
>> figure;
>> h=subplot(2,2,1);
>> ax=get(h,'Position');
>> ax(4)=ax(4)+0.1; %or wathever
>> set(h,'Position',ax);