how to calculate neighbouring cells on a matrix?

3 次查看(过去 30 天)
Hi, i need to calculate a Matrix where every centre cell need to get the sum value of its neighbouring cells. the "catch" is that also the last columns (lets call it east and west), needs to also get each others value (such as on earth for instance) as neighbours. any ideas? thanks!

采纳的回答

Mohammad Abouali
Mohammad Abouali 2015-12-9
use a combination of padarray() and conv2(). Something like this:
A=reshape(1:100,10,10)
A_Padded=padarray(A,[1 1],'circular')
kernel=ones(3,3);
A_SumNeighbor = conv2(A_Padded,kernel,'valid')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Earth and Planetary Science 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by