completeMatrix {actel} | R Documentation |
Complete a Distances Matrix
Description
Completes the bottom diagonal of a matrix with the same number of rows and columns.
Usage
completeMatrix(x)
Arguments
x |
A distances matrix to be completed. |
Details
It is highly recommended to read the manual page regarding distances matrices before running this function. You can find it here: https://hugomflavio.github.io/actel-website/manual-distances.html
Value
A matrix of distances between pairs of points.
Examples
# 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)
[Package actel version 1.3.0 Index]