exmp2_9.m

来自「用dsp解压mp3程序的算法」· M 代码 · 共 11 行

M
11
字号
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% exmp2_9.m - Plot portion of speech in data file timit1.asc
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

load -ascii timit1.asc;    % input speech signal from data file
soundsc(timit1);           % autoscale and play vector as sound
plot(timit1);              % plot the waveform
title('Speech waveform');
axis([3501, 4000, -4500, 4500]); % zoom in 500 samples only,
                                 % starting from index 3501
xlabel('Amplitude'); ylabel('Time index, n');

⌨️ 快捷键说明

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