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