Content deleted Content added
Mark viking (talk | contribs) Added context to first sentence, wl |
|||
Line 59:
H = FFT(h,N) <span style="color:green;">(''zero-padded FFT'')</span>
i = 1
'''while''' i <= Nx <span style="color:green;">(''Nx last index of x[n]'')</span>
il = min(i+L-1,Nx)
yt = IFFT( FFT(x(i:il),N) * H, N)
|