⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 program_11_3.m

📁 数字信号处理和小波分析的源码
💻 M
字号:
% Program 11_3
% Spectrogram of a Speech Signal
%
colordef black;
load mtlb
n = 1:4001;
s1=zeros(1,4001);
figure(1)
plot(n-1,mtlb,'g',n-1,s1,'w');
xlabel('Time index n');ylabel('Amplitude');
figure(2)
nfft = input('Type in the window length = ');
ovlap = input('Type in the desired overlap = ');
specgram(mtlb,nfft,7418,hamming(nfft),ovlap)
B=specgram(mtlb,nfft,7418,hamming(nfft),ovlap)

⌨️ 快捷键说明

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