View source: R/distanceCalculation.R
distanceMatrixWrapper | R Documentation |
Wrapper to calculate the distance matrix, with one or multiple distance functions.
distanceMatrixWrapper(x, distanceFunction, ...)
x |
list of candidate solutions whose distance is evaluated |
distanceFunction |
Distance function of type f(x,y)=r, where r is a scalar and x and y are candidate solutions whose distance is evaluated. |
... |
further arguments passed to distanceFunction |
matrix of distances between all solutions in list x
x <- list(5:1,c(2,4,5,1,3),c(5,4,3,1,2))
dm1 <- distanceMatrix(x,distancePermutationHamming)
dm2 <- distanceMatrix(x,distancePermutationInsert)
dmBoth <- distanceMatrixWrapper(x,list(distancePermutationHamming,distancePermutationInsert))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.