sfstoolbox / sfs-matlab

SFS Toolbox for Matlab/Octave
https://sfs-matlab.readthedocs.io
MIT License
97 stars 39 forks source link

replace custom fft, ifft functions with built-in functionality #103

Closed fietew closed 8 years ago

fietew commented 8 years ago

Things are quite confusing with fft_real and ifft_real, as they do not provide any additional functionality which is not provided by MATLAB's fft and ifft. Furthermore, convolution can be improved, if x is a vector and y is a matrix (or vice versa), as the FFT has to be only performed once on the vector.

VeraE commented 8 years ago

I tested the new convolution() function and it works nicely. To me, the code is now more obvious, too.