フィルターのクリア

LMS filter export

1 回表示 (過去 30 日間)
Anmk
Anmk 2012 年 2 月 19 日
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?

採用された回答

Rick Rosson
Rick Rosson 2012 年 2 月 20 日
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 件のコメント
Anmk
Anmk 2012 年 2 月 20 日
Thank you very much!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAdaptive Filters についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by