how to find the bandwidth of a signal
52 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
raj
am 9 Dez. 2011
Kommentiert: krishna Chauhan
am 14 Dez. 2021
i have a audio signal ,I want to know the bandwidth because its specgram has artefacts i think it may be due to the sample rate.
0 Kommentare
Akzeptierte Antwort
Daniel Shub
am 9 Dez. 2011
For all but the simplest cases the term bandwidth is ambiguous. You probably want to look at the long-time Fourier transform instead of the short-timer (i.e., spectrogram). Assuming your audio signal is single channel and called x
plot(20*log10(abs(fft(x))))
From there you might be able to define the lower and upper frequency bounds of your signal.
2 Kommentare
Mike
am 7 Feb. 2013
Hi, i am looking for the bandwidth of this signal: f = (sin(2*pi*697*t) + sin(2*pi*1633*t))/2;
Can i use the same way: plot(20*log10(abs(fft(f)))) to define the lower and upper frequency bounds of my signal? Does the y axis represent the frequency values?
krishna Chauhan
am 14 Dez. 2021
No you need to make y axis as freq axis by multiplyinh time scale by Fs/N.What is the numerical BW here in your case?
You can varify using FFT by subtracting lowest freq from highest freq, I am not sure.
Weitere Antworten (1)
Amir Tari
am 25 Mär. 2019
Hi , I think Bandwidth is defined only for systems not signals
1 Kommentar
Walter Roberson
am 25 Mär. 2019
No, signals as well.
Siehe auch
Kategorien
Mehr zu Audio I/O and Waveform Generation 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!