matrixDistance {LearnClust} | R Documentation |
To calculate the matrix distance by using distance
type.
matrixDistance(list, distance)
list |
is a clusters list. |
distance |
is a literal. |
This function is part of the hierarchical clusterization method. The function calculates the matrix distance by using the distance type given.
The list
parameter will be a list with the clusters as rows and columns.
The function avoids distances equal 0 and undefined clusters.
data <- c(1:10)
clusters <- toList(data)
matrixDistance(clusters, 'EUC')