This is where navigation should be.


GSP_FULL_CONNECTED - Create a fully connected graph

Usage

G = gsp_full_connected(N);
G = gsp_full_connected();

Input parameters

N Number of vertices (default 10)

Output parameters

G Graph structure.

Description

'gsp_full_connected(N)' initializes a graph structure representing a fully connected graph. All weight are set to 1.

Example:

G = gsp_full_connected(5);
param.show_edges = 1;
gsp_plot_graph(G,param);
gsp_full_connected_1_1.png