Filter löschen
Filter löschen

LMS filter export

1 Ansicht (letzte 30 Tage)
Anmk
Anmk am 19 Feb. 2012
Hello, Is it possible to export the h[n] of an LMS filter created based on two training signals using the following commands:
hlms2=dsp.LMSFilter('StepSize', 0.0001, 'Length' , 600)
[output,err]=step(hlms2,x_echo_trainset_orig,new)
in order to use it with another signal as echo remover?

Akzeptierte Antwort

Rick Rosson
Rick Rosson am 20 Feb. 2012
The step method returns the filter coefficients as an optional output argument:
[output,err,coeffs] = step(hlms2,x_echo_trainset_orig,new);
HTH.
Rick
  1 Kommentar
Anmk
Anmk am 20 Feb. 2012
Thank you very much!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by