How can I analyses of speech signal by Mel map and wavelet?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre Speech Recognition en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!