There doesn't seem to be a kernel for folding a vector by a divisor. This is essential for decimation in the frequency domain. ```matlab % Example, Matlab notation Fx_alias = (Fx(1:256) + Fx(257:512) + Fx(513:768) + Fx(769:1024)) / 4; ```