figure(1); imagesc(...)
figure(2); imagesc(...)
I use the zoom tool to magnify a portion of one of figure(1). I would then like to apply the same zoom parameters to figure(2). Is there an easy way to programmatically extract the zoom parameters of one and copy them to the second?
Use LINKAXES
Bruno
Thanks. That actually put me on the trail of linkprops, which is even better for what I need.