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