Program code for convolution
Mostrar comentarios más antiguos
I want program for convolution
Respuestas (2)
u = [1 2 3 1]; v = [2 3];
conv(u, v)
% filter(u, 1, v)
Walter Roberson
el 3 de Ag. de 2022
0 votos
nlfilter() a function that converts to double, does element-wise multiplication, and sums.
Categorías
Más información sobre Correlation and Convolution en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!