matrix_get_neighbors: Get neighboring cell values for given matrix cell
Description
Get the values of a k*k neighborhood, as vector and by row, given a matrix, k, and focal cell position (row and column).
Usage
matrix_get_neighbors(m, pos, k = 3)
Value
A vector with cell values, ordered by rows, starting from the top left corner of the neighborhood and to the right. When neighborhood extends beyond matrix bounds, only the "existing" values are returned.
Arguments
m
A matrix.
pos
The focal cell position, a numeric vector of length two of the form c(row, column).
k
Neighborhood size around the focal cell. For example, k=3 implies a neighborhood of size 3*3. Must be an odd positive integer.