Generate random distance matrices
rdists(N, names, scale = 100)
N
: Number of locations.names
: Names of locations.scale
: Scale of the distance matrices. Default is 100.List of signed distances.
This function generates random distance matrices using rnorm
. scale
controls the scale of the distance matrices.
set.seed(123) rdists(3) rdists(3, scale = 1) rdists(3, names = LETTERS[1:3])
Useful links