diss.index {dissUtils} | R Documentation |
Given an index into a distance object of Size N, finds the coordinates of the same pairwise dissimilarity in an N by N matrix of dissimilarities
diss.index(index, N)
index |
the position of the item in the distance object |
N |
the Size of the distance object, the number of points it compares |
## The function is currently defined as
function (index, N)
{
i <- floor(.raw.i(n, ix));
return(c(i = i, j = .calc.j(i, n, ix)));
}