How can I plot spectrogram without using function "spectrogram"?
20 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Andrew
am 4 Nov. 2012
Kommentiert: Walter Roberson
am 3 Feb. 2023
Hello I've got a signal which depends on three variables. I want to plot a draft like draft using function "spectrogram" (2D draft with three axes, third axis is displayed with color). I don't want to use this function, because before plotting it processing a signal, but I have alredy processed signal. Thank you for your future help.
Best regards, Andrew
0 Kommentare
Akzeptierte Antwort
Wayne King
am 4 Nov. 2012
To replicate the plotting behavior of spectrogram.m, use surf()
z = randn(100,100);
t = 1:100;
x = 1:100;
surf(t,x,abs(z),'EdgeColor','none');
axis xy; axis tight; colormap(jet); view(0,90);
0 Kommentare
Weitere Antworten (2)
math
am 3 Feb. 2023
How can I plot spectrogram using function "spectrogram
1 Kommentar
Walter Roberson
am 3 Feb. 2023
The documentation includes examples
help spectrogram
Siehe auch
Kategorien
Mehr zu Time-Frequency Analysis finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!