icceps.m

来自「Matsig is an object-oriented signal clas」· M 代码 · 共 16 行

M
16
字号
function x = icceps(xhat,nd)% ICCEPS  Inverse complex cepstrum%%    x = icceps(xhat,nd) returns the inverse complex cepstrum of%    the (assumed real) sequence xhat, removing nd samples of%    delay.% $Id: icceps.m 46 2004-08-26 11:48:36Z mairas $x_ = icceps(xhat.s,nd);t = time(struct('begin',xhat.time.t(1+nd),'num',length(x_),'fs',xhat.fs));x = signal(x_,t);

⌨️ 快捷键说明

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