|
Or maybe this:
hf = figure;
ha1 = axes('Position',[.1 .1 .4 .3]);
load clown
imagesc(X)
colormap(map)
ha2 = axes('Position',[.5 .1 .4 .3]);
imagesc(X)
set(ha1,'XTickLabel',[],'Xtick',[],...
'YTickLabel',[],'YTick',[]);
set(ha2,'XTickLabel',[],'Xtick',[],...
'YTickLabel',[],'YTick',[]);
"Rob Campbell" <matlab@robertREMOVEcampbell.removethis.co.uk> wrote in
message news:hvdh1k$fdk$1@fred.mathworks.com...
>
>> thanks in advance....>>
> Example:
> clf
> axes('position',[0.05,0.05,0.25,0.25]),box
> axes('position',[0.35,0.35,0.25,0.25]),box
> axes('position',[0.65,0.65,0.25,0.25]),box
>
|