How to compute and plot a Spectrogram?
13 次查看(过去 30 天)
显示 更早的评论
Hey I'm very new to MATLAB...like I've never used it for anything other than checking answers to my matrices homework. I'm trying to load data from two ".mat" files and use that data to compute and plot a spectrogram. Does anyone have any idea how I might be able to do that? Thank you!
I've computed the spectrogram using the command:
[y,f,t,p] = spectrogram(song_waveform, 128, 120, 256, 1E3, 'yaxis');
where "song_waveform" is the file containing the loaded data. Am I using this command right? The next step is to plot the computed spectrogram using the "IMAGESC" command. I've tried "Help IMAGESC" and didn't really get anything out of it. What do you think I should do now? Thank you for any help you can give.
0 个评论
回答(2 个)
Azzi Abdelmalek
2013-9-16
Look at
help load
help plot
3 个评论
Azzi Abdelmalek
2013-11-3
For more details use
doc imagesc
%Or look at this link
You can also search on the net with keyword: matlab imagesc
Youssef Khmou
2013-9-17
try to use help, like abdelmalek answered, or use the function directly :
>>spectrogram(randn(200,1)); % white noise
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time-Frequency Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!