Effacer les filtres
Effacer les filtres

adding adjacent n elements in a matrix

4 vues (au cours des 30 derniers jours)
OLUBUKOLA ogunsola
OLUBUKOLA ogunsola le 26 Juin 2016
if i have a matrix like A= (1 2 3 4;5 6 7 8;9 10 11 12 ; 13 14 15 16) adding three adjacent elements will look like A(i,j)+A(i,(j+1))+A(i,(j+2)) how can i do this for n adjacent elements ?

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 26 Juin 2016
A= [1 2 3 4;5 6 7 8;9 10 11 12 ; 13 14 15 16];
out = conv2(A,[1 1 1],'valid')
  3 commentaires
Stephen23
Stephen23 le 26 Juin 2016
Pick N to suit:
conv2(A,ones(1,N),'valid')
OLUBUKOLA ogunsola
OLUBUKOLA ogunsola le 26 Juin 2016
Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by