'update'
[epclust.git] / epclust / tests / testthat / helper.computeMedoidsIndices.R
diff --git a/epclust/tests/testthat/helper.computeMedoidsIndices.R b/epclust/tests/testthat/helper.computeMedoidsIndices.R
deleted file mode 100644 (file)
index cd6a30e..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-# R-equivalent of computeMedoidsIndices, requiring a matrix
-# (thus potentially breaking "fit-in-memory" hope)
-R_computeMedoidsIndices <- function(medoids, series)
-{
-       nb_series = ncol(series) #series in columns
-
-       mi = rep(NA,nb_series)
-       for (i in 1:nb_series)
-               mi[i] <- which.min( colSums( sweep(medoids, 1, series[,i], '-')^2 ) )
-
-       mi
-}