rceps
Real kepstr and minimum-phase reduction.
| Library |
|
Algorithms
The real kepstr is the inverse Fourier transform of the real logarithm of the Fourier transform module of the sequence.
Function rceps works only with real data.
|
Function rceps — this is the implementation of algorithm 7.2 from [2]:
y = real(ifft(log(abs(fft(x)))))
The corresponding window transformation in the cepstral region generates a reconstructed minimum-phase signal:
w = [1.0; fill(2.0, n÷2 - 1); fill(1.0, 1 - n % 2); zeros(n÷2 - 1)]
ym = real(ifft(exp.(fft(w .* y))))