icceps.m
来自「基于matlab的面向对象的信号处理类库。主要应用于音频、语音信号的一些处理。内」· 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 + -
显示快捷键?