This is where navigation should be.


GSP_GRAPH - Create a graph given weighted adjacency matrix

Usage

G = gsp_graph(W);
G = gsp_graph(W, coords);
G = gsp_graph(W, coords, limits);

Input parameters

W (n by n) Weighted adjacency matrix
coords (n by 2) or (n by 3) Coordinates of the points (optional)
limits limits for the coordinates (optional)

Output parameters

G Graph structure.

Description

'gsp_graph(W, coords, limits)' initializes a graph structure with W as weight matrix.

Example:

W = rand(10);
W = W - diag(diag(W));
W = (W + W')/2;
G = gsp_graph(W);