Unable to resolve the name dsp.FIRFilter.
7 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
I am newbie to MATLAB. I was trying out this LMS filter MATLAB example, but gets the following error
"Unable to resolve the name dsp.FIRFilter."
signal = sin(2*pi*0.055*(0:1000-1)');
noise = randn(1000,1);
filt = dsp.FIRFilter;
filt.Numerator = fir1(11,0.4);
fnoise = filt(noise);
d = signal + fnoise;
Do we need to have separate licence to run the tutorial?
PS: Currently I have licenses for the following products,
0 件のコメント
回答 (2 件)
Uday Pradhan
2021 年 5 月 25 日
Hi Veeresh,
The dsp.FIRFilter system object is part of the DSP System toolbox which is a separate licensed product. You can however try out the code using MATLAB online.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Adaptive Filters についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!