Biquad IIR filter design with Q factor sorting?
Show older comments
I have designed biquad IIR filter:
h = fdesign.lowpass('N,Fc', 8, 10e3, 100e3); % 4-biquad with 100kHz sampling rate and 10kHz cutoff freq
Hd = design(h, 'butter');
Hd_sos = convert(Hd, 'df2sos');
I checked Q-factor and realized the first sos section has the largest Q and the last sos has the smallest. I want the smallest Q to be first and the lagest to be the last sos. Any suggestion to do so?
Accepted Answer
More Answers (0)
Categories
Find more on Digital and Analog Filters in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!