how to save spectrogram of signal as image ?
26 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
arunnagiri murrugesan
am 8 Sep. 2018
Kommentiert: RaB
am 4 Apr. 2021
how to save spectrogram of signal as pixel or image ?
1 Kommentar
Akzeptierte Antwort
KALYAN ACHARJYA
am 8 Sep. 2018
Bearbeitet: KALYAN ACHARJYA
am 8 Sep. 2018
% You can do it in multiples ways, for example, check the following sample code
N=1024;
n=0:N-1;
w0=2*pi/5;
x=sin(w0*n)+10*sin(2*w0*n);
s=spectrogram(x);
spectrogram(x,'yaxis');
saveas(gcf,'filename.png'); %Use to display save as image
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Time-Frequency Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!