필터 지우기
필터 지우기

Sound Signals - How to find max value of periodogram(y) ?

조회 수: 1 (최근 30일)
ParkourPolkaDots
ParkourPolkaDots 2019년 3월 29일
편집: ParkourPolkaDots 2019년 3월 29일
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.
  1. What is the y-label for source signal? --> dB?
  2. What is the y-label for the power spectral density- periodogram(y) plot? is that just magnitude || intensity?
  3. 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개)

카테고리

Help CenterFile Exchange에서 Audio Processing Algorithm Design에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by