hypergraph.entropy {HyperG} | R Documentation |
Hypergraph Entropy
Description
The hypergraph entropy, which is a sum of the suitably scaled eigenvalues of the hypergraph Laplacian.
Usage
hypergraph.entropy(h)
Arguments
h |
a hypergraph. |
Details
Bretto, page 9, defines hypergraph entropy as follows. Let L'(h) be the Laplacian
of h
divided by the sum of its diagonal. Then the |V|-1
eigenvalues
sum to 1, and the entropy is defined by
-sum(\lambda_i\log_2\lambda_i)
.
Value
a number.
Author(s)
David J. Marchette dmarchette@gmail.com
References
Bretto, Alain, Hypergraph theory, An introduction. Springer, 2013.
See Also
Examples
h <- hypergraph_from_edgelist(list(3:4,1:3,c(3,5,7:10),c(4,6),c(3,5,8)))
hypergraph.entropy(h)
## 2.802822
[Package HyperG version 1.0.0 Index]