Filter löschen
Filter löschen

IIR filter coefficients calculation

3 Ansichten (letzte 30 Tage)
Md Shahidul Alam
Md Shahidul Alam am 6 Feb. 2018
I'm trying to design a 'butterworth', 'bandpass' IIR filter using MATLAB. I used designfilt function to design the filter. So using fvtool I can check the info and it shows the filter type is IIR filter But when I used filter function to check the output and used fvtool, in the information it shows that the filter is FIR type. And it shows different numerator and denaminator. Could any one plz tell me what's happening here? Thanks in advance!
d1 = designfilt('bandpassiir','FilterOrder',4, ...
'HalfPowerFrequency1',0.5,'HalfPowerFrequency2',6, ...
'DesignMethod','butter','SampleRate',Fs);
fvtool(d1)
d = filter(d1,input_signal);
fvtool(d)

Antworten (1)

Dhamdhawach Horsuwan
Dhamdhawach Horsuwan am 11 Feb. 2020
This is wrong variable type.
d1 is digitalFilter which can visualize with fvtool;
but for d that return from filter is output data or filtered signal.
fvtool only use with filter such as digitalFilter object , filter coefficient[a,b] or sos matrix.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by