fdesign.octave - Extend to frequencies below 20 Hz

10 Ansichten (letzte 30 Tage)
apusnik
apusnik am 20 Mär. 2020
Beantwortet: Samatha Aleti am 23 Mär. 2020
I'd like to design a third-ocatve filter with the function fdesign.octave for center frequency below 20 Hz (10 Hz), But I got the following warning. Any possibility to extend the valid frequency range?
d1 = fdesign.octave(3,'Class 1','N,F0',6,10,4096);
Warning: Valid values for the 'F0' property are :
25.12

Antworten (1)

Samatha Aleti
Samatha Aleti am 23 Mär. 2020
Center frequencies must be greater than 20 Hz and less than 20,000 Hz. If the center frequency specified is not valid, it will be rounded to nearest valid value. In your case the nearest valid value is 25.12.
You can know the valid center frequency values of a specific filter using “validfrequencies” as follows:
d1 = fdesign.octave(3,'Class 1','N,F0',6,10,4096);
validcenterfreq = validfrequencies(d1);

Kategorien

Mehr zu Measurements and Spatial Audio finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by