Nothing
# Function for simulating an environmental factor
################################################################################
library("fields")
library("mvtnorm")
px <- 10
py <- 10
xy <- expand.grid(x= 1:px, y= 1:py)
dists <- as.matrix(dist(xy, method= "euclidian", diag= TRUE, upper= TRUE))
P <- Matern(dists, scale= 1, range= 1)
set.seed(124)
x <- rmvnorm(1, mean= seq(1, 2, length.out= px*py), sigma= 0.25 * P)
envir <- as.vector(x)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.