NL_G_DeleteEdges deletes the set of L edges defined by their indexes from the graph G. The output graph is stored in .
Examples
[g]=NL_G_MakeGraph('g1',4,[1234],[2341],[100100900900],[100900900100]);//generation of a graphg.node_name=['n1''n2''n3''n4'];g.edge_name=['e1''e2''e3''e4'];l=[12];//list of edges to delete[go]=NL_G_DeleteEdges(g,l);//application of NL_G_DeleteEdgesgo.name='g2';i1=1;f=NL_G_ShowGraph(g,i1);//visualization of gi2=2;f2=NL_G_ShowGraph(go,i2);//visualization of go