cceps.m

来自「基于matlab的面向对象的信号处理类库。主要应用于音频、语音信号的一些处理。内」· M 代码 · 共 17 行

M
17
字号
function xhat = cceps(x,varargin)% CCEPS  Complex cepstral analysis%%    xhat = cceps(x)%    xhat = cceps(x,n)%%    Calculate complex cepstrum of a signal. See CCEPS for more%    information.% $Id: cceps.m 46 2004-08-26 11:48:36Z mairas $xhat_ = cceps(x.s,varargin{:});t = time(struct('begin',0,'num',length(xhat_),'fs',x.fs));xhat = signal(xhat_,t);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?