Program code for convolution
Afficher commentaires plus anciens
I want program for convolution
Réponses (2)
u = [1 2 3 1]; v = [2 3];
conv(u, v)
% filter(u, 1, v)
Walter Roberson
le 3 Août 2022
0 votes
nlfilter() a function that converts to double, does element-wise multiplication, and sums.
Catégories
En savoir plus sur Correlation and Convolution dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!