Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in /nfs/aesop1/hw00/d22/dasc/WikiRoiPac/inc/parser/handler.php on line 1376
Warning: preg_match(): Compilation failed: invalid range in character class at offset 3106 in /nfs/aesop1/hw00/d22/dasc/WikiRoiPac/inc/parser/lexer.php on line 118
A PCRE internal error occured. This might be caused by a faulty plugin
Warning: Cannot modify header information - headers already sent by (output started at /nfs/aesop1/hw00/d22/dasc/WikiRoiPac/inc/parser/handler.php:1376) in /nfs/aesop1/hw00/d22/dasc/WikiRoiPac/inc/actions.php on line 657
Warning: Cannot modify header information - headers already sent by (output started at /nfs/aesop1/hw00/d22/dasc/WikiRoiPac/inc/parser/handler.php:1376) in /nfs/aesop1/hw00/d22/dasc/WikiRoiPac/inc/actions.php on line 657
Warning: Cannot modify header information - headers already sent by (output started at /nfs/aesop1/hw00/d22/dasc/WikiRoiPac/inc/parser/handler.php:1376) in /nfs/aesop1/hw00/d22/dasc/WikiRoiPac/inc/actions.php on line 657
===== Viewing Output Files With Matlab =====
The output files can be read into Matlab and displayed using the following syntax:
% 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
The arguments for //multibandread// may need to be adjusted depending on the [[:output|file format]] (precision; bil or bsq) or computer byte order (endianess).