フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

wfilters magnitude - why maxim value equals to sqrt(2)?

1 回表示 (過去 30 日間)
Huan Zhao
Huan Zhao 2018 年 4 月 5 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hi there,
I am using wfilters function to check the transfer function of wavelet families. After trying the attached code (an example of Haar wavelet), I find all the magnitude with a maxim value of sqrt(2). May I ask what is the reason for this, please?
Thank you very much.
if true
N = 1024;
Fmax = 10;
[LoD,HiD] = wfilters('haar');
HiDFT = fft(HiD,N);
DF = Fmax*2/(N-1);
f = 0:DF:Fmax;
figure;
plot(f,abs(HiDFT(1:N/2)),'linewidth',2);
axis tight;
title('Level 1 Filter Transfer Function');
xlabel('Frequency');
ylabel('Magnitude');
end

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by