Compute cosine cross-distances between the rows of matrices.
skmeans_xdist(x, y = NULL)
A dense matrix \(d\) with entry \(d_{ij} = 1 - \cos(x_i, y_j)\)
the cosine distance between the \(i\)-th row \(x_i\) of x
and the \(j\)-th row \(y_j\) of y
.
A numeric data matrix. Can be a dense matrix, simple triplet matrix (package slam), or a dgTMatrix (package Matrix).
NULL
(default), or as for x
.
The default is equivalent to taking y
as x
(but more
efficient).