G = gsp_graph(W); G = gsp_graph(W, coords); G = gsp_graph(W, coords, limits);
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) |
G | Graph structure. |
'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);