📄 rceps.m
字号:
function [xhat, yhat] = rceps(x)
%RCEPS Real cepstrum.
% RCEPS(x) returns the real cepstrum of the sequence x.
% [xh, yh] = RCEPS(x) returns both the real cepstrum and a
% minimum phase signal derived from x.
% See also CCEPS, HILBERT, and FFT.
% Author(s): L. Shure, 6-9-88
% Copyright (c) 1988-98 by The MathWorks, Inc.
% $Revision: 1.11 $ $Date: 1997/11/26 20:12:55 $
% References:
% [1] A.V. Oppenheim and R.W. Schafer, Digital Signal
% Processing, Prentice-Hall, 1975.
% [2] Programs for Digital Signal Processing, IEEE Press,
% John Wiley & Sons, 1979, algorithm 7.2.
n = length(x);
xhat = real(ifft(log(abs(fft(x)))));
if nargout > 1
odd = fix(rem(n,2));
wn = [1; 2*ones((n+odd)/2-1,1) ; ones(1-rem(n,2),1); zeros((n+odd)/2-1,1)];
yhat = zeros(size(x));
yhat(:) = real(ifft(exp(fft(wn.*xhat(:)))));
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -