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