wiki_research

personal research wiki
git clone https://a3nm.net/git/wiki_research/
Log | Files | Refs

adjacency_matrix (319B)


      1 # Adjacency matrix
      2 
      3 A [matrix] indicating which [edges] exist in a [graph]
      4 
      5 - can be [Boolean_matrix] to indicate the existence of edges
      6 - can store [edge] weights / distances
      7 
      8 May be [sparse_matrices] for [sparse_graphs]
      9 
     10 Up: [graph_representation]
     11 
     12 Aliases: adjacency matrices
     13 
     14 See also: [adjacency_list], [adjacent]