R/seriate_reverse.R

Defines functions seriate_matrix_reverse seriate_dist_reverse

#######################################################################
# seriation - Infrastructure for seriation
# Copyright (C) 2011 Michael Hahsler, Christian Buchta and Kurt Hornik
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

seriate_dist_reverse <- function(x, control) {
  control <- .get_parameters(control, NULL)
  rev(seq(attr(x, "Size")))
}

seriate_matrix_reverse <- function(x, control, margin = seq_along(dim(x))) {
  control <- .get_parameters(control, NULL)
  lapply(seq_along(dim(x)), function(i)
    if (i %in% margin) rev(seq(dim(x)[i]))
    else NA
  )
}

set_seriation_method("dist",
                     "Reverse",
                     seriate_dist_reverse,
                     "Reversed identity permutation",
                     optimized = "None")

set_seriation_method("matrix",
                     "Reverse",
                     seriate_matrix_reverse,
                     "Reversed identity permutation",
                     optimized = "None")

set_seriation_method("array",
                     "Reverse",
                     seriate_matrix_reverse,
                     "Reversed identity permutation",
                     optimized = "None")
mhahsler/seriation documentation built on April 24, 2024, 10:08 p.m.