display of the spectrogramm of the vowels of one, two and three
This commit is contained in:
parent
21202dfa75
commit
7e417b271f
|
|
@ -32,3 +32,12 @@ sprintf(["time used for FFT: " num2str(durationFFT)])
|
|||
|
||||
spectrogram(y, fs, 5, 30);
|
||||
spectrogram(y, fs, 5, 5);
|
||||
|
||||
%spectrogram of "one"
|
||||
spectrogram(y(0.76*fs:0.96*fs), fs, 5, 30);
|
||||
|
||||
%spectrogram of "two"
|
||||
spectrogram(y(1.38*fs:1.64*fs), fs, 5, 30);
|
||||
|
||||
%spectrogram of "three"
|
||||
spectrogram(y(1.88*fs:2.18*fs), fs, 5, 30);
|
||||
Loading…
Reference in New Issue