Getting Started
			
			
			
			
			
				
				
			
			Book Resources
			
			
			About the Book
			
			
			
			Principal Authors:
			Fawwaz T. Ulaby
			David G. Long, 
			
			Contributing Authors:
			William Blackwell
			Charles Elachi
			Adrian Fung
			Chris Ruf
			Kamal Sarabandi
			Jakob van Zyl
			Howard Zebker
			
			Language: English 
			ISBN: 978-0-472-11935-6
						
		 
		
		
			
				
End-of-Chapter Problems: images and data
prob15.10a.tif
prob15.10a image.1
prob15.10b.tif
prob15.10b image.2
Example matlab code for reading image.1 and making it into a complex image of the appropriate size:
lines = 14336;
pixels = 3072;
fp = fopen('image.1','r');
raw   = fread(fp,lines*pixels*8,'float'); % each pixel is composed of 2 4-byte floating point numbers.
fclose(fp);
rawC  = raw(1:2:end) + 1i*raw(2:2:end);
data  = reshape(rawC,pixels,lines)';