Advertisement
Guest User

Untitled

a guest
May 1st, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. %% 7.
  2.  
  3. t=linspace(1,500,500);
  4. fftPic=fft2(imgGray);
  5. figure; plot(t,fftPic);
  6. figure, plot(t, abs(fftPic)), title('Amplitude Plot')
  7. figure, plot(t, angle(fftPic)), title('Phase Plot')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement