📄 exmp2_9.m
字号:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -