如何在 MatLab 的 N 维数组中找到元素的所有邻居?
问问题
363 次
2 回答
0
如果您有坐标,只需向所有方向前进 1 和 1 后退(如果可能)。如果您还想要对角线邻居,您还必须尝试所有组合 1 前进、1 后退或 0 前进(当然除了所有方向的 0)。
于 2013-01-08T11:15:29.830 回答
0
Look at the code for computing adjacency matrix. It computes neighbors for all entries in arbitrary dimensions.
EDIT:
You may want to explore Matlab's conndef
as well.
于 2013-01-08T11:35:34.900 回答