Fixed repmat

This commit is contained in:
Waldir Leoncio 2020-01-15 10:55:50 +01:00
parent ff8bc8cce6
commit aaa4b9302c
2 changed files with 15 additions and 3 deletions

View file

@ -6,13 +6,23 @@
#' @param n either a scalar with the number of replications in both rows and columns or a 2-length vector with individual repetitions. #' @param n either a scalar with the number of replications in both rows and columns or a 2-length vector with individual repetitions.
#' @return matrix replicated over `ncol(mx) * n` columns and `nrow(mx) * n` rows #' @return matrix replicated over `ncol(mx) * n` columns and `nrow(mx) * n` rows
#' @note The Matlab implementation of this function accepts `n` with length > 2. #' @note The Matlab implementation of this function accepts `n` with length > 2.
#'
#' It should also be noted that a concatenated vector in R, e.g. `c(5, 2)`, becomes a column vector when coerced to matrix, even though it may look like a row vector at first glance. This is important to keep in mind when considering the expected output of this function. Vectors in R make sense to be seen as column vectors, given R's Statistics-oriented paradigm where variables are usually disposed as columns in a dataset.
#' @export #' @export
repmat <- function (mx, n) { repmat <- function (mx, n) {
# Validation
if (length(n) > 2) warning("Extra dimensions of n ignored") if (length(n) > 2) warning("Extra dimensions of n ignored")
if (length(n) == 1) n <- rep(n, 2) if (length(n) == 1) n <- rep(n, 2)
out <- mx_cols <- rep(mx, n[1]) if (class(mx) != "matrix") mx <- as.matrix(mx)
if (n[2] > 1) {
for (i in seq(n[2] - 1)) out <- rbind(out, mx_cols) # Replicating cols
out <- mx_col <- matrix(rep(mx, n[2]), nrow(mx))
# Replicating rows
if (n[1] > 1) {
for (i in seq(n[1] - 1)) out <- rbind(out, mx_col)
} }
# Output
return(unname(as.matrix(out))) return(unname(as.matrix(out)))
} }

View file

@ -23,4 +23,6 @@ function on Matlab
} }
\note{ \note{
The Matlab implementation of this function accepts `n` with length > 2. The Matlab implementation of this function accepts `n` with length > 2.
It should also be noted that a concatenated vector in R, e.g. `c(5, 2)`, becomes a column vector when coerced to matrix, even though it may look like a row vector at first glance. This is important to keep in mind when considering the expected output of this function. Vectors in R make sense to be seen as column vectors, given R's Statistics-oriented paradigm where variables are usually disposed as columns in a dataset.
} }