GraphTheory
WeightMatrix
get weight matrix
Calling Sequence
Parameters
Description
Examples
WeightMatrix(G, cp)
G
-
weighted graph
cp
(optional) symbol or equation
WeightMatrix returns the matrix of edge weights of a weighted graph. The optional argument cp is used to control whether the weight matrix of the graph or a copy of it should be returned. The argument cp can be either the symbol copy or an equation of the form copy=true or copy=false. If the argument is missing the command returns a copy of the weight matrix of the graph by default.
with⁡GraphTheory:
G≔Graph⁡1,2,2,2,3,1
G≔Graph 1: an undirected weighted graph with 3 vertices and 2 edge(s)
WeightMatrix⁡G
020201010
See Also
GetEdgeWeight
IsWeighted
MakeWeighted
SetEdgeWeight
Download Help Document