compute the convolution and plot the sequence
显示 更早的评论
Write a MATLAB program to compute the convolution of the following sequences
x=[1 2 3 4 5 6], y=[1, 1 ,1]
(a) Plot the signal x and y using stem plots as two subplots in a single figure window
(b) Plot the convolved sequence in a separate figure window
回答(1 个)
x=[1 2 3 4 5 6];
y=[1, 1 ,1]
z = conv(x, y);
stem(z)
类别
在 帮助中心 和 File Exchange 中查找有关 Correlation and Convolution 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
