将语音读入MATLAB中,画出该段语音的时域波形图,并用sound函数听音。
时间: 2024-05-14 18:14:53 浏览: 43
以下是MATLAB代码:
```matlab
% 读入语音
[x, fs] = audioread('sample.wav');
% 画出时域波形图
t = (0:length(x)-1)/fs;
plot(t, x);
xlabel('Time (s)');
ylabel('Amplitude');
title('Waveform of Speech Signal');
% 播放语音
sound(x, fs);
```
请注意,将上述代码中的文件名`sample.wav`替换为实际的语音文件名。
阅读全文