how can use discrete convolution to find the response?
1 view (last 30 days)
Show older comments
hi all I am beginner in signal processing. how can I solve below question? thanks
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/159563/image.jpeg)
0 Comments
Answers (1)
Image Analyst
on 31 Mar 2016
Try this:
x = [0, 0, 1, 0, 0]
h = [0, 2, 1, 0, 0]
output = conv(x, h, 'full')
2 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!