polymer_network: Creates adjacency matrix with min degree one and max degree...

Description Usage Arguments Value Examples

View source: R/adjacency.R

Description

Creates adjacency matrix with min degree one and max degree two.

Usage

1
polymer_network(d, theta_1, theta_2, directed = FALSE)

Arguments

d

Number of nodes.

theta_1

Off-diagonal value or network effect.

theta_2

Diagonal value or momentum effect.

directed

Boolean if lower triangular is the opposite to the upper triangular matrix.

Value

Adjacency matrix of a graph with max degree two and minimum one.

Examples

1
2
3
4
d <- 10
theta_2 <- 2
theta_1 <- 1
polymer_network(d = d, theta_1 = theta_1, theta_2 = theta_2)

ntwk documentation built on Sept. 13, 2021, 9:07 a.m.