資源簡介
是用于LPC在matlab中實現的一些matlab源代碼

代碼片段和文件信息
function?r?=?acClip(x?min?max)
%?r?=?acClip(frame?min?max)
%
%?Computes?the?modified?autocorrelation?function?of?a
%?clipped?frame?x?between?min?lag?and?max?lag.
%?Function?is?defined?in?(4.41)?of?Rabiner?(p.?154).
%?Returns?vector?[R(min)?...?R(max)].
x?=?x(:); %?input?must?be?a?column?vector
N?=?length(x);
r?=?zeros(N1);
for?k?=?min:max
??for?i?=?1:N-k
????if?(?(x(i1)?==?0)?|?(x(i+k1)?==?0)?)
??????r(k1)?=?r(k1)?+?0;
?????elseif?(x(i1)?==?x(i+k1))
???????r(k1)?=?r(k1)?+?1;
?????else
???????r(k1)?=?r(k1)?-?1;
?????end
??end
end?
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????556??2000-05-01?15:33??proj\acClip.m
?????文件????????346??2000-05-01?16:31??proj\acClipZero.m
?????文件????????316??2000-04-25?14:55??proj\autocorr.m
?????文件???????1268??2000-05-01?17:59??proj\clip.m
?????文件????????418??2000-05-02?11:43??proj\ctomat.m
?????文件????????690??2000-04-25?16:03??proj\durbin.m
?????文件????????358??2000-05-01?17:57??proj\findmax.m
?????文件????????497??2000-05-01?18:11??proj\fir.m
?????文件????????664??2000-04-27?12:55??proj\hamwind.m
?????文件????????559??2000-05-01?15:58??proj\lpcalgo.m
?????文件????????570??2000-05-01?17:48??proj\lpfdesign.m
?????文件????????442??2000-05-02?11:43??proj\mattoc.m
?????文件???????1617??2000-05-02?10:41??proj\proj.m
?????文件????????740??2000-05-02?10:38??proj\reconstruct.m
?????文件????????664??2000-04-27?12:55??proj\segment.m
?????文件????????553??2000-05-01?15:57??proj\silence.m
?????文件??????30200??2000-05-01?23:37??original\female_a.mat
?????文件??????30200??2000-05-01?23:37??original\female_i.mat
?????文件??????24200??2000-05-01?23:37??original\female_u.mat
?????文件?????100200??2000-05-01?23:36??original\male_a.mat
?????文件??????80200??2000-05-01?23:36??original\male_i.mat
?????文件?????100200??2000-05-01?23:36??original\male_u.mat
?????文件??????69870??2000-04-17?11:31??original\sent_female.mat
?????文件??????76830??2000-04-17?11:31??original\sent_male.mat
?????目錄??????????0??2010-04-27?20:38??proj
?????目錄??????????0??2010-04-27?20:38??original
-----------?---------??----------?-----??----
???????????????522158????????????????????26
- 上一篇:基于MATLAB的整車工況仿真程序
- 下一篇:matlab 粗糙集屬性約簡
評論
共有 條評論