How can I analyses of speech signal by Mel map and wavelet?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I am working on speech recognition and restoration. I read an audio file to matlab and convert it to frequency domain by taking the FFT to the audio signal. Now I wont to analyses of the signal by Mel map and wavelet. please can someone help me ? I don't know how can I do this in matlab.....
%Read the data to the MATLAB using audioread.
[y,fs] = audioread('filename');
y_fft=abs(fft(y));
% plot the signal in frequency domain
n=length(y)-1
f=0:fs/n:fs;
figure;
plot(f,y_fft);
xlabel('Frequency in Hz');
ylabel('Magnitude');
title('The Wave FFT');
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Speech Recognition에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!