sgram2.m

来自「这是一个用于语音信号处理的工具箱」· M 代码 · 共 13 行

M
13
字号
%spectrogram for speech data
%created by Childers
%May 19, 1999

% call Matlab function to calculate spectrogram from input signal
axes(ax1);

[B2,F2,T] = specgram ( excitation,[], 10000, [], [] );
time=1:Ntotal+100;
% plot the spectrogram
imagesc(time,F2,-20*log10(10+abs(B2))),axis xy, colormap(jet); 
title('Excitation Signal');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?