lms 滤波器是否不依赖于输入或所需信号?
Does lms filter does not depend on input or desired signal?
此问题涉及与 lms 过滤器相关的 link。
http://au.mathworks.com/help/dsp/ref/adaptfilt.lms.html
过滤器由 ha = adaptfilt.lms(32,mu) 调用;我的问题是 adaptfilt.lms 在没有给出期望值或信号?如有任何意见,我们将不胜感激。
示例中的相关代码:
x = randn(1,500); % Input to the filter
b = fir1(31,0.5); % FIR system to be identified
n = 0.1*randn(1,500); % Observation noise signal
d = filter(b,1,x)+n; % Desired signal
mu = 0.008; % LMS step size.
ha = adaptfilt.lms(32,mu);
[y,e] = filter(ha,x,d);
看行:
ha = adaptfilt.lms(32,mu);
[y,e] = filter(ha,x,d);
正在为 lms 过滤器提供输入和所需输出以及系统顺序。
此问题涉及与 lms 过滤器相关的 link。 http://au.mathworks.com/help/dsp/ref/adaptfilt.lms.html
过滤器由 ha = adaptfilt.lms(32,mu) 调用;我的问题是 adaptfilt.lms 在没有给出期望值或信号?如有任何意见,我们将不胜感激。
示例中的相关代码:
x = randn(1,500); % Input to the filter
b = fir1(31,0.5); % FIR system to be identified
n = 0.1*randn(1,500); % Observation noise signal
d = filter(b,1,x)+n; % Desired signal
mu = 0.008; % LMS step size.
ha = adaptfilt.lms(32,mu);
[y,e] = filter(ha,x,d);
看行:
ha = adaptfilt.lms(32,mu);
[y,e] = filter(ha,x,d);
正在为 lms 过滤器提供输入和所需输出以及系统顺序。