Sound Signals - How to find max value of periodogram(y) ?
3 次查看(过去 30 天)
显示 更早的评论
Context: reading .wav files of child vocalizations and trying to map out formants from there.
I have plotted the sound signal and used periodogram(y) to get the output energy spectrum graph.
We're testing ranges for formants, so I have predefined maxes.
- What is the y-label for source signal? --> dB?
- What is the y-label for the power spectral density- periodogram(y) plot? is that just magnitude || intensity?
- audioread only reads y, how do I loop through and find the x values that go with
Code:
%% find local maxima in the following ranges
%F1 range
for x1=200:800; %frequency range considered
F1=max(y);
end
%F2 range
for x2=800:1800; %frequency range considered
F2=max(y);
end
%F3 range
for x3=1800:3500; %frequency range considered
F3=max(y);
end
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!