For a graph with an adjacency matrix A, graph moment is defined as [REMOVE_ME]ρm(A)=tr(A/n)m[REMOVEME2]
where n is the number of vertices and m is an order of the moment. nd.moments computes pairwise distances based on log of graph moments from m=1 to m=k.
nd.moments( A, k =3, metric = c("euclidean","maximum","manhattan","canberra","binary","minkowski"), out.dist =TRUE)
Arguments
A: a list of length N containing (M×M) adjacency matrices.
k: the integer order of moments. If k is too large, it may incur numerical overflow.
metric: type of distance measures for log-moment features. See dist for more details.
out.dist: a logical; TRUE for computed distance matrix as a dist object.
Returns
a named list containing
D: an (N×N) matrix or dist object containing pairwise distance measures.
Description
For a graph with an adjacency matrix A, graph moment is defined as
ρm(A)=tr(A/n)m
where n is the number of vertices and m is an order of the moment. nd.moments computes pairwise distances based on log of graph moments from m=1 to m=k.