Back to category: Technology

Limited version - please login or register to view the entire paper.

Task #1 Report

Task #1 Report

In this part of the project, we use C language to implement the delayed LMS adaptive filtering algorithm which is formulated as:



Where u is small positive constant as the step size and T is the number of filter taps. The estimated signal yi in each data interval is calculated and subtracted from the desired signal di to get the error signal ei. However, this delayed LMS algorithm uses the previous error signal ei-1 to update each coefficient instead of using the current error signal ei.

In our C program, we set T to be a...

Posted by: Carlos Hernandez

Limited version - please login or register to view the entire paper.