📄 sgram1.m
字号:
%spectrogram for speech data
%created by Childers
%May 19, 1999
% call Matlab function to calculate spectrogram from input signal
%axis1=LEFT:RIGHT;
axes(ax1);
[B1,F1,T] = specgram ( signal1,[], 10000, [], [] );
time=1:length(signal1);
% plot the spectrogram
imagesc(time,F1, -20*log10(10+abs(B1))),axis xy, colormap(jet);
title('Speech signal - original');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -