Complete a Distances Matrix
Completes the bottom diagonal of a matrix with the same number of rows and columns.
completeMatrix(x)
x |
A distances matrix to be completed. |
It is highly recommended to read the vignette regarding distances matrix before running this function.
You can find it by running vignette('a-2_distances_matrix', 'actel')
or browseVignettes('actel')
A matrix of distances between pairs of points.
# Create dummy matrix with upper diagonal filled. x <- matrix( c( 0, 1, 2, 3, 4, 5, NA, 0, 1, 2, 3, 4, NA, NA, 0, 1, 2, 3, NA, NA, NA, 0, 1, 2, NA, NA, NA, NA, 0, 1, NA, NA, NA, NA, NA, 0), ncol = 6, byrow = TRUE) # inspect x x # run completeMatrix completeMatrix(x)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.