make_2d_Isingland_matrix | R Documentation |
Make multiple landscapes together for different parameters.
make_2d_Isingland_matrix(Ising_grid, transform = FALSE)
Ising_grid |
Parameter values generated by |
transform |
By default, this function considers the Ising network
to use |
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.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.