Program code for convolution
Show older comments
I want program for convolution
Answers (2)
u = [1 2 3 1]; v = [2 3];
conv(u, v)
% filter(u, 1, v)
Walter Roberson
on 3 Aug 2022
0 votes
nlfilter() a function that converts to double, does element-wise multiplication, and sums.
Categories
Find more on Correlation and Convolution in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!