• 大小: 4.73M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-07
  • 语言: Matlab
  • 标签: AEC  MATLAB  NLMS  对消  

资源简介

回声对消算法rls,frls,nlms,apa的matlab仿真,还附有音频文件,和详细的文档说明,很详细,非常适合本科生做毕业设计。

资源截图

代码片段和文件信息

function [emsece] = apa(ylongxlongLhEP)
% title: APA Adaptive Filter
% adaptive filter here with the following inputs and outputs:
% ylong: lngexp by 1 vector of far-end signal
% xlong: lngexp by 1 vector of near-end signal
% L: length of the adaptive filter scalar
% hEP: true echo path vector L by 1 vector

% e: lngexp by 1 vector of cancelled echo
% mse: lngexp by 1 vector of filtered error energy expressed in dB
% ce: lngexp by 1 length vector of coefficient error expressed in dB

% Author: Wei Zhang
% Copyright 2014(c)

lngexp = length(ylong);
h = zeros(L1);
N = 5;
Y = zeros(LN);
y_vector = zeros(L1);
x_vector = zeros(N1);
e = zeros(lngexp1);
mse = zeros(lngexp1);
ce = zeros(lngexp1);

mu = 0.1;
lambda = 0.95;
delta = 0.01;
mse_old = 0;

for n

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     目录          0  2015-06-10 16:02  AEC

     文件       1281  2014-06-07 20:05  AEC\apa.m

     目录          0  2015-06-10 15:53  AEC\Data

     文件     257973  2014-05-19 21:51  AEC\Data\ce_apa_color_L256.mat

     文件     264961  2014-05-19 21:52  AEC\Data\ce_apa_white_L256.mat

     文件     250205  2014-05-20 16:49  AEC\Data\ce_frls_color_L256.mat

     文件     258830  2014-05-20 17:04  AEC\Data\ce_frls_color_L64.mat

     文件     244008  2014-05-20 16:42  AEC\Data\ce_frls_white_L256.mat

     文件     235557  2014-05-19 21:50  AEC\Data\ce_nlms_color_L256.mat

     文件     236724  2014-05-20 17:04  AEC\Data\ce_nlms_color_L64.mat

     文件     256961  2014-05-19 21:48  AEC\Data\ce_nlms_white_L256.mat

     文件     270827  2014-05-19 21:52  AEC\Data\ce_nlms_white_L64.mat

     文件     250523  2014-05-20 16:50  AEC\Data\ce_rls_color_L256.mat

     文件     257139  2014-05-20 17:03  AEC\Data\ce_rls_color_L64.mat

     文件     243648  2014-05-20 16:16  AEC\Data\ce_rls_white_L256.mat

     文件     284233  2014-05-20 08:54  AEC\Data\mse_apa_color_L256.mat

     文件     283515  2014-05-20 14:33  AEC\Data\mse_apa_white_L256.mat

     文件     289923  2014-05-20 08:48  AEC\Data\mse_nlms_color_L256.mat

     文件     284513  2014-05-20 08:46  AEC\Data\mse_nlms_white_L256.mat

     文件     283571  2014-05-20 08:45  AEC\Data\mse_nlms_white_L64.mat

     文件       3913  2014-05-20 17:08  AEC\Data\plf.m

     文件       2957  2014-05-20 17:04  AEC\Echo_Canceller_Stub_2014.m

     文件     480044  2012-12-09 14:26  AEC\femalecln.wav

     文件       1701  2014-06-07 20:05  AEC\frls.m

     文件       1111  2014-06-07 20:05  AEC\nlms.m

     文件     151040  2014-05-27 15:25  AEC\Project1.doc

     文件      44289  2014-05-02 14:34  AEC\Project_One_Assignment.pdf

     文件       1711  2014-06-07 20:06  AEC\rls.m

     文件      78044  2014-05-18 13:34  AEC\speech.wav

----------- ---------  ---------- -----  ----

............此处省略2个文件信息

评论

共有 条评论