make_2d_Isingland_matrix {Isinglandr} | R Documentation |
Make a matrix of landscapes for multiple Ising networks
Description
Make multiple landscapes together for different parameters.
Usage
make_2d_Isingland_matrix(Ising_grid, transform = FALSE)
Arguments
Ising_grid |
Parameter values generated by |
transform |
By default, this function considers the Ising network
to use |
Value
A 2d_Isingland_matrix
object that contains the following
components:
-
dist_raw
,dist
Two tibbles containing the probability distribution and the potential values for different states. -
Nvar
The number of variables (nodes) in the Ising network.
Examples
Nvar <- 10
m <- rep(0, Nvar)
w <- matrix(0.1, Nvar, Nvar)
diag(w) <- 0
result4 <- make_Ising_grid(
all_thresholds(seq(-0.1, 0.1, 0.1), .f = `+`),
whole_weiadj(seq(0.5, 1.5, 0.5)),
m, w
) %>% make_2d_Isingland_matrix()
plot(result4)
[Package Isinglandr version 0.1.1 Index]