networks(deprecated)/connect - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : networks(deprecated)/connect

networks

  

connect

  

connects two sets of vertices in a graph

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

connect(S1, S2, G)

connect(S1, S2, weights=L1, G)

connect(S1, S2, names=L2, G)

connect(S1, S2, 'directed', G)

connect(S1, S2, 'weights'=L1, 'names'=L2, 'directed', G)

Parameters

G

-

graph or network

S1

-

vertex list or set from G

S2

-

vertex list or set from G

L1

-

list of edge weights

L2

-

list of edge names

Description

• 

Important: The networks package has been deprecated.  Use the superseding package GraphTheory instead.

• 

This procedure connects each vertex in S1 to a vertex in S2 with an edge. The names of the new edges are returned in an expression sequence.

• 

If the 'directed' flag is included as an argument then all the edges are regarded as directed from S1 to S2. In all other cases, the edges are regarded as undirected.

• 

Specific edge weights and names can be indicated by providing a list of weights (L1) and names (L1). In the case of more than one edge, it can be helpful to provide the vertices as lists rather than sets so that mapping to the edges is unaffected by the random ordering of elements in sets.

• 

The lists L1 and L2 must contain c1c2 entries where S1 and S2 contain c1 and c2 elements respectively.

• 

This routine is normally loaded via the command with(networks) but may also be referenced using the full name networks[connect](...).

Examples

Important: The networks package has been deprecated.  Use the superseding package GraphTheory instead.

withnetworks:

Gvoid9:

connect1,2,3,4,G

e1,e2,e3,e4

(1)

connect4,5,6,7,names=ee1,ee2,ee3,directed,G

ee1,ee2,ee3

(2)

See Also

GraphTheory

networks(deprecated)[addedge]

with