===== Viewing Output Files With Matlab ===== The output files can be read into Matlab and displayed using the following syntax: <code> % load interleave file int=multibandread('geo_990401-010719.unw',[1556 1845 2],'float',0,'bil','ieee-le'); % plot amplitude band figure imagesc(int(:,:,1)); caxis([0 10]); % adjust color scale % plot phase band figure imagesc(int(:,:,2); caxis([-3 3]); % adjust color scale </code> The arguments for //multibandread// may need to be adjusted depending on the [[:output|file format]] (precision; bil or bsq) or computer byte order (endianess).