Adjacency matrix

cosmos 27th September 2017 at 12:38am
Graph (data structure)

A Matrix that defines a Graph or a Network. AA

Aij=1 if edge (j,i) existsA_{ij} = 1 \text{ if edge (j,i) exists}. Aij=0 if edge (j,i) doesn't existA_{ij} = 0 \text{ if edge (j,i) doesn't exist}

AT=AA^T=A if undirected.

AA describes same network if we permute columns and rows in the same way.

Weighted adjacency matrix (or weight matrix) WW assigns a weight to edges. Usually weight is a real number: w:ERw: E \rightarrow \mathbb{R}

"Topology" represented by AA.

"Geometry represented by WW.

Related: Graph laplacian