how to save spectrogram of signal as image ?

17 ビュー (過去 30 日間)
arunnagiri murrugesan
arunnagiri murrugesan 2018 年 9 月 8 日
コメント済み: RaB 2021 年 4 月 4 日
how to save spectrogram of signal as pixel or image ?
  1 件のコメント
RaB
RaB 2021 年 4 月 4 日
how do you save the image without title, labels, ticks, etc.? ... just the image

サインインしてコメントする。

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2018 年 9 月 8 日
編集済み: KALYAN ACHARJYA 2018 年 9 月 8 日
% 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 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2018 年 9 月 8 日
save at current working directory folder

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTime-Frequency Analysis についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by