fdesign.octave - Extend to frequencies below 20 Hz

10 ビュー (過去 30 日間)
apusnik
apusnik 2020 年 3 月 20 日
回答済み: Samatha Aleti 2020 年 3 月 23 日
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

回答 (1 件)

Samatha Aleti
Samatha Aleti 2020 年 3 月 23 日
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);

カテゴリ

Help Center および File ExchangeMeasurements and Spatial Audio についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by