- Make a new project on Overleaf.
- In the share menu, copy the link from "Clone with git"
- On your computer:
- use cdto navigate to where you want to put your project
 
- use 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from numpy.fft import fft, ifft, fft2, ifft2, fftshift | |
| import numpy as np | |
| def fft_convolve2d(x,y): | |
| """ 2D convolution, using FFT""" | |
| fr = fft2(x) | |
| fr2 = fft2(np.flipud(np.fliplr(y))) | |
| m,n = fr.shape | |
| cc = np.real(ifft2(fr*fr2)) | |
| cc = np.roll(cc, -m/2+1,axis=0) | 
      This file has been truncated, but you can view the full file.
    
    
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 阿爸 a1'ba4 18137 | |
| 阿昌族 a1'chang1'zu2 50849 | |
| 阿斗 a1'dou3 42632 | |
| 阿飞 a1'fei1 48603 | |
| 阿富汗 a1'fu4'han4 3461 | |
| 阿訇 a1'hong1 34432 | |
| 阿拉伯数字 a1'la1'bo2'shu4'zi4 35937 | |
| 阿拉伯语 a1'la1'bo2'yu3 30476 | |
| 阿妈 a1'ma1 16220 | 
      
      Loading
      
  Sorry, something went wrong. Reload?
      Sorry, we cannot display this file.
      Sorry, this file is invalid so it cannot be displayed.