GraphTheory
EigenvectorCentrality
compute eigenvector centrality
Calling Sequence
Parameters
Description
Examples
Compatibility
EigenvectorCentrality(G)
EigenvectorCentrality(G, v)
G
-
graph
v
(optional) a vertex of G
EigenvectorCentrality returns the eigenvector centrality for a specified vertex in the given graph G, or if no vertex is specified, returns a list of the eigenvector centralities for each vertex in G.
Let A be the adjacency matrix of G. The eigenvector centrality of a vertex v in G is the normalized value of the corresponding entry in the eigenvector of A which corresponds with the largest eigenvalue of A.
with⁡GraphTheory:
Compute the eigenvector centrality for a specified graph.
G≔Graph⁡6,1,3,1,6,2,4,2,6,3,6,4,5,4,6,5,6
G≔Graph 1: an undirected graph with 6 vertices and 8 edge(s)
DrawGraph⁡G
EigenvectorCentrality⁡G
0.130085678713417,0.149538495378514,0.130085678713417,0.187421156483979,0.149538495378514,0.253330495332159
The GraphTheory[EigenvectorCentrality] command was introduced in Maple 2020.
For more information on Maple 2020 changes, see Updates in Maple 2020.
See Also
BetweennessCentrality
ClosenessCentrality
DegreeCentrality
HarmonicCentrality
InformationCentrality
KatzCentrality
PageRankCentrality
Download Help Document