networkx.generators.lattice.grid_2d_graph¶
-
grid_2d_graph(m, n, periodic=False, create_using=None)[source]¶ Returns the two-dimensional grid graph.
The grid graph has each node connected to its four nearest neighbors.
- Parameters
m, n (
intoriterable containerofnodes) – If an integer, nodes are fromrange(n). If a container, elements become the coordinate of the nodes.periodic (
bool (default:False)) – If this isTruethe nodes on the grid boundaries are joined to the corresponding nodes on the opposite grid boundaries.create_using (
NetworkX graph constructor,optional (default=nx.Graph)) – Graph type to create. If graph instance, then cleared before populated.
- Returns
The (possibly periodic) grid graph of the specified dimensions.
- Return type
NetworkX graph