how can use discrete convolution to find the response?
조회 수: 1 (최근 30일)
이전 댓글 표시
hi all I am beginner in signal processing. how can I solve below question? thanks

댓글 수: 0
답변 (1개)
Image Analyst
2016년 3월 31일
Try this:
x = [0, 0, 1, 0, 0]
h = [0, 2, 1, 0, 0]
output = conv(x, h, 'full')
댓글 수: 2
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!