I have multiple subplots in one figure. The X axis of each plot is the same variable (time). The Y axis on each plot is different (both in what it represents and the magnit
To link a pair of figures with linkaxes use:
figure;imagesc(data1); f1h=findobj(gcf,,’type’,’axes’) figure;imagesc(data2); f2h=findobj(gcf,,’type’,’axes’) linkaxes([f1h,f2h],’xy’)