inner-products {nevada} | R Documentation |
Inner-Products Between Networks
Description
This is a collection of functions computing the inner product between two networks.
Usage
ipro_frobenius(x, y, representation = "laplacian")
Arguments
x |
An |
y |
An |
representation |
A string specifying the desired type of representation,
among: |
Value
A scalar measuring the angle between the two input networks.
Examples
g1 <- igraph::sample_gnp(20, 0.1)
g2 <- igraph::sample_gnp(20, 0.2)
ipro_frobenius(g1, g2, "adjacency")
[Package nevada version 0.2.0 Index]