Plot the STFT spectrogram
43 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ali Al-Saegh
am 11 Jul. 2020
Kommentiert: Ali Al-Saegh
am 12 Jul. 2020
How to get that 2D image in the figure, please? It is taken from a STFT tutorial in Matlab.
0 Kommentare
Akzeptierte Antwort
Thiago Henrique Gomes Lobato
am 12 Jul. 2020
The function tutorials of matlab normally give code examples and results. For you to reproduce the result you just need to run the exactly same given code. In this case, just copy the code lines before and you will get the same picture:
fs = 10e3;
t = 0:1/fs:2;
x = vco(sin(2*pi*t),[0.1 0.4]*fs,fs);
stft(x,fs,'Window',kaiser(256,5),'OverlapLength',220,'FFTLength',512);
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!