% % SIO135/236 Lab 8 Optional, Spring 2009 % % clear % % read in the binary images % e1=fread(fopen('22388_2925.SLC','r','b'),[5488,800],'*short','b')'; e2=fread(fopen('02715_2925.SLC','r','b'),[5488,800],'*short','b')'; % % % convert these arrays to complex numbers % c1=double(complex(e1(:,1:2:5487),e1(:,2:2:5488))); c2=double(complex(e2(:,1:2:5487),e2(:,2:2:5488)));