How to make a spectrogram
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Brittany Williams
il 18 Mar 2019
Modificato: madhan ravi
il 18 Mar 2019
Hello, I am a MATLAB beginner and would like to make a spectrogram from a sound file but don’t know where to start. Is someone able to give me instructions, beginning with where on my computer my sound file should be saved so that MATLAB can access it?
Thank you :-)
2 Commenti
Adam
il 18 Mar 2019
If you have the signal processing toolbox then
doc spectrogram
will give you a spectrogram once you have loaded in your data.
Risposta accettata
KALYAN ACHARJYA
il 18 Mar 2019
Modificato: madhan ravi
il 18 Mar 2019
[signal,fs]=wavread('audio_file.wav');
find the psd of the psd_signal, see documentation
plot(psd_signal);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Time-Frequency Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!