JUNG ライブラリを使用して、特定のグラフの頂点の固有ベクトルの中心性尺度を計算したいと考えています。残念ながら、私のコードは間違った結果を返します。ここに私のコードの一部があります:
DirectedSparseGraph<Customer, Transaction> tsn=f.getTSN()
EigenvectorCentrality<Customer, Transaction> eScorer=new EigenvectorCentrality<>(tsn);
for(Customer node:tsn.getVertices()){
System.out.println(node.getName()+" :eigen:"+eScorer.getVertexScore(node));
}
jungライブラリでeigenvectorを使用する際に見逃した部分を教えてください。よろしく。