Program_2_5.m
资源名称:speech.rar [点击查看]
上传用户:ay_070428
上传日期:2014-12-04
资源大小:11427k
文件大小:0k
源码类别:
语音合成与识别
开发平台:
Matlab
- % Program_2_5
- % Illustration of Convolution
- %
- a = input('Type in the first sequence = ');
- b = input('Type in the second sequence = ');
- c = conv(a, b);
- M = length(c)-1;
- n = 0:M;
- disp('output sequence =');disp(c)
- stem(n,c);
- xlabel('Time index n');
- ylabel('Amplitude');