Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

1 visualización (últimos 30 días)
Huan Zhao
Huan Zhao el 5 de Abr. de 2018
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by