Iterative equalization with training when the equalizer has a delay
2 次查看(过去 30 天)
显示 更早的评论
Hello there
So I was building a equalizer using the build-in system object with a reference tap at 2, which means the equalizer has a delay of 1
eqObj.RefTap = 2;
because of the delay, if I want to train 10 samples, I will need 11 samples
equalize(eqObj, sig(1:11), ref(1:10));
my question is that I want to train it iteratively, sample by sample, and the code is something like this
eqObj.ResetBeforeFiltering = 0;
for n = 1:10
eqOut(n) = equalize(eqObj, sig(n), ref(n));
% do something here, but nothing for now
end
and the results are different with the above code, plus a warning because of the equalizer delay.
without the delay, the two equalizers' outputs are the same. So is there anyway I can keep the delay but still train the equalizer iteratively?
Thank you
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Communications Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!