How can I plot spectrogram without using function "spectrogram"?
13 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Wayne King
2012 年 11 月 4 日
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 件のコメント
その他の回答 (2 件)
math
2023 年 2 月 3 日
How can I plot spectrogram using function "spectrogram
1 件のコメント
Walter Roberson
2023 年 2 月 3 日
The documentation includes examples
help spectrogram
参考
カテゴリ
Help Center および File Exchange で Time-Frequency Analysis についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!