Filter löschen
Filter löschen

how to generate {8,3} regular graphs for large number of vertices

11 Ansichten (letzte 30 Tage)
Zahid
Zahid am 25 Feb. 2024
Bearbeitet: Zahid am 25 Apr. 2024
hyperbolic lattices

Akzeptierte Antwort

Simar
Simar am 5 Mär. 2024
Hi Zahid,
I understand that you are seeking assistance in generating the adjacency matrix representation for a regular graph that corresponds to a {8,3} tiling, for large number of vertices.
The {8,3} tiling is a hyperbolic tiling where each vertex is surrounded by three octagons. As mentioned, this tiling can be represented in the Poincaré disk model. The challenge is to convert this geometric representation into a graph's adjacency matrix. Given the complexity of directly translating tiling into an adjacency matrix for large n, a practical approach involves understanding the tiling's properties and generating the graph programmatically.
Here is a conceptual guide and MATLAB code to help start with this process, focusing on the adjacency matrix generation.
  • Vertex Identification: Assign a unique identifier to each vertex in the tiling. In the {8,3} tiling, vertices can be identified based on their position in the tiling pattern.
  • Adjacency Rules: Determine the rules of adjacency based on the tiling. In the {8,3} tiling, each vertex is connected to three other vertices. The challenge is to systematically identify these connections based on the tiling's geometry.
  • Adjacency Matrix Generation: Once have a systematic way to identify vertices and their adjacencies, generate the adjacency matrix.
This code does not directly generate the {8,3} tiling but provides a framework to generate the adjacency matrix once a method for identifying vertices and their adjacencies is in place.
% Assuming you have a way to identify vertices and their adjacencies
n = 10000; % Number of vertices
A = sparse(n, n); % Initialize a sparse adjacency matrix for efficiency
% Hypothetical function to get adjacency list for a vertex
% Define this based on tiling generation
% function adjVertices = getAdjacentVertices(vertexId)
% adjVertices = [...]; % Return IDs of adjacent vertices
% end
% Populate the adjacency matrix
% This is a conceptual loop. Replace it with your logic
% Based on how you are generating or traversing the {8,3} tiling.
for vertexId = 1:n
adjVertices = getAdjacentVertices(vertexId); % Need to implement this
for adjVertex = adjVertices
A(vertexId, adjVertex) = 1; % Mark the adjacency
A(adjVertex, vertexId) = 1; % For undirected graph
end
end
The critical part is implementing the getAdjacentVertices function to systematically determine the adjacencies in the {8,3} tiling. This requires a deep understanding of the tiling's geometry and a way to navigate or iterate through the tiling pattern programmatically.
Due to the complexity and specificity of the {8,3} tiling in hyperbolic geometry, there is not a universal solution that can be provided without a more detailed exploration of the tiling's properties and its representation in the code.
Please refer to the following documentation links-
Hope it helps!
Best Regards,
Simar

Weitere Antworten (0)

Kategorien

Mehr zu Networks finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by