rdists function

Generate random distance matrices

Generate random distance matrices

rdists(N, names, scale = 100)

Arguments

  • N: Number of locations.
  • names: Names of locations.
  • scale: Scale of the distance matrices. Default is 100.

Returns

List of signed distances.

Details

This function generates random distance matrices using rnorm. scale

controls the scale of the distance matrices.

Examples

set.seed(123) rdists(3) rdists(3, scale = 1) rdists(3, names = LETTERS[1:3])