How to plot loudspeaker frequency response from its impulse response?
Ältere Kommentare anzeigen
I have the impulse response of a loudspeaker - how do I convert this to a frequency response and plot it as a typical frequency response plot as shown in attached image.
Thanks
<<

>>
Antworten (2)
Honglei Chen
am 26 Jul. 2017
Frequency response is the Fourier transform of the impulse response so you should be able to use freqz to compute it if you are talking about in discrete domain. For plotting, you may want to use semilogx.
For example,
h = rand(1,64); % impulse response
fs = 1000;
Nfft = 128;
[H,F] = freqz(h,1,Nfft,fs);
semilogx(F,mag2db(abs(H))); grid on;
xlabel('Frequency (Hz)'); ylabel('Magnitude (dB)');
HTH
1 Kommentar
Sanya Tayal
am 29 Mai 2019
Hey, what does the '1' mean in freqz(h,1,Nfft,fs) ?
Star Strider
am 26 Jul. 2017
0 Stimmen
That should be the frequency response of the speaker.
Kategorien
Mehr zu Spectral Measurements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!