Skip to content

johschmitz/xcorr_fft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Circular Cross Correlation using FFT for MATLAB

Rough idea: Calculate the crosscorrelation f of two vectors a and b by:

c = fft(a);
d = fft(b);
e = c.*conj(d);
f = ifft(e);

See code for a complete version and details like zeropadding and fftshift.

About

Circular Cross Correlation using FFT for MATLAB

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages