필터 지우기
필터 지우기

how to extract pitch of the audio signal?

조회 수: 5 (최근 30일)
sidra Rafique
sidra Rafique 2018년 9월 1일
댓글: sidra Rafique 2018년 9월 1일
hi. i need to extract pitch of the signal whom frequency and time i already have extracted. but when i apply pitch function of the audio processing toolbox , its not working. As it is installed but still i have to buy it or use its trial version. Is there any alternate toolbox for pitch calculation or any other way to get this toolbox. waiting for the help. code for pitch is given below:
if true
[audioIn,fs] = audioread('hasilwav4.wav');
[f0,idx] = pitch(audioIn,fs);
figure
subplot(2,1,1)
plot(audioIn)
ylabel('Amplitude')
subplot(2,1,2)
plot(idx,f0)
ylabel('Pitch (Hz)')
xlabel('Sample Number')
end
  댓글 수: 3
sidra Rafique
sidra Rafique 2018년 9월 1일
this is the graph of my required sound pitch. i dont understant either its right or wrong. because its most values are zero. please help me in understanding it.
sidra Rafique
sidra Rafique 2018년 9월 1일
My code is given below for the above plot:
if true spectrum = pwelch(VE); figure plot(10*log10(spectrum)) ylabel('Pitch (Hz)') xlabel('Sample Number') end

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Measurements and Spatial Audio에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by