Guest User

Untitled

a guest
May 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. x = complex(ResultI, ResultQ);
  2.  
  3. D = 64;
  4.  
  5. N=512; %FFT size
  6. m1=reshape(x,length(x)/D,D); %generating matrix ---> each row showing range info for one period AND each column showing number of periods
  7. [My,Ny]=size(m1');
  8. win=hamming(Ny);
  9. m2=(win*ones(1,My));applying window for sidelobe reduction (in time domain)
  10. M2=(fft(m2,2*N)); %First FFT for range information
  11. M3=fftshift(fft(M2',2*D)); %Second FFT for doppler information
  12. [My,Ny]=size(M3);
Add Comment
Please, Sign In to add comment