Robust alignment of chromatograms by Moving Window Fast Fourier Transfrom
- Clone this project with git
- Start MATLAB and change the working dir to the folder of project
- Run the following code in MATLAB command window to see alignment result
load demo
w=70
[xa,matrix,sr] = mwfft2(x,r,w);
plot(x,'r');hold on;plot(r,'b');plot(xa,'g')
legend('to align','reference','aligned');