Return the set of edges connected to a node inside a graph.
[E] = NL_G_EdgesOfNode(G,I)
Graph.
Node index.
List of edges.
NL_G_EdgesOfNode returns the set of edges E connected to the node I inside the graph G.
[path]=NL_F_NARVALPath();//path to NARVAL module path=path+'/demos/';//folder path name='topo_20.topo';//file name Lxmin=100; Lxmax=900; Lymin=100; Lymax=900; [g]=NL_G_LoadGraphNE(path,name,Lxmin,Lxmax,Lymin,Lymax);//graph loading ind=1;//window index f=NL_G_ShowGraphNE(g,ind);//graph visualization i=3;//node index [e]=NL_G_EdgesOfNode(g,i)//application of NL_G_EdgesOfNode