2022-04-29 14:50:51 +00:00
|
|
|
#' Tensor Times Matrix (n-mode tensor matrix product)
|
|
|
|
#'
|
|
|
|
#' @param T array of order at least \code{mode}
|
|
|
|
#' @param M matrix, the right hand side of the mode product such that
|
2022-10-06 12:25:40 +00:00
|
|
|
#' \code{ncol(M)} equals \code{dim(T)[mode]} if \code{transposed} is false,
|
|
|
|
#' otherwise the dimension matching is \code{nrow(M)} to \code{dim(T)[mode]}.
|
2022-04-29 14:50:51 +00:00
|
|
|
#' @param mode the mode of the product in the range \code{1:length(dim(T))}
|
2022-10-06 12:25:40 +00:00
|
|
|
#' @param transposed boolean to multiply with the transposed of \code{M}
|
2022-04-29 14:50:51 +00:00
|
|
|
#'
|
|
|
|
#' @returns multi-dimensional array of the same order as \code{T} with
|
2022-10-06 12:25:40 +00:00
|
|
|
#' \code{mode} dimension equal to \code{nrow(M)} or \code{ncol(M)} if
|
|
|
|
#' \code{transposed} is true.
|
2022-04-29 14:50:51 +00:00
|
|
|
#'
|
2023-11-14 13:35:43 +00:00
|
|
|
#' @examples
|
|
|
|
#' for (mode in 1:4) {
|
|
|
|
#' dimA <- sample.int(10, 4, replace = TRUE)
|
|
|
|
#' A <- array(rnorm(prod(dimA)), dim = dimA)
|
|
|
|
#' nrowB <- sample.int(10, 1)
|
|
|
|
#' B <- matrix(rnorm(nrowB * dimA[mode]), nrowB)
|
|
|
|
#'
|
|
|
|
#' C <- ttm(A, B, mode)
|
|
|
|
#'
|
|
|
|
#' dimC <- ifelse(seq_along(dims) != mode, dimA, nrowB)
|
|
|
|
#' C.ref <- mat(B %*% mat(A, mode), mode, dims = dimC, inv = TRUE)
|
|
|
|
#'
|
|
|
|
#' stopifnot(all.equal(C, C.ref))
|
|
|
|
#' }
|
|
|
|
#'
|
|
|
|
#' for (mode in 1:4) {
|
|
|
|
#' dimA <- sample.int(10, 4, replace = TRUE)
|
|
|
|
#' A <- array(rnorm(prod(dimA)), dim = dimA)
|
|
|
|
#' ncolB <- sample.int(10, 1)
|
|
|
|
#' B <- matrix(rnorm(dimA[mode] * ncolB), dimA[mode])
|
|
|
|
#'
|
|
|
|
#' C <- ttm(A, B, mode, transposed = TRUE)
|
|
|
|
#'
|
|
|
|
#' C.ref <- ttm(A, t(B), mode)
|
|
|
|
#'
|
|
|
|
#' stopifnot(all.equal(C, C.ref))
|
|
|
|
#' }
|
|
|
|
#'
|
2022-04-29 14:50:51 +00:00
|
|
|
#' @export
|
2022-10-06 12:25:40 +00:00
|
|
|
ttm <- function(T, M, mode = length(dim(T)), transposed = FALSE) {
|
2022-04-29 14:50:51 +00:00
|
|
|
storage.mode(T) <- storage.mode(M) <- "double"
|
2022-10-25 15:00:24 +00:00
|
|
|
dim(M) <- c(NROW(M), NCOL(M))
|
2022-10-06 12:25:40 +00:00
|
|
|
.Call("C_ttm", T, M, as.integer(mode), as.logical(transposed))
|
2022-04-29 14:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#' @rdname ttm
|
|
|
|
#' @export
|
|
|
|
`%x_1%` <- function(T, M) ttm(T, M, 1L)
|
|
|
|
#' @rdname ttm
|
|
|
|
#' @export
|
|
|
|
`%x_2%` <- function(T, M) ttm(T, M, 2L)
|
|
|
|
#' @rdname ttm
|
|
|
|
#' @export
|
|
|
|
`%x_3%` <- function(T, M) ttm(T, M, 3L)
|
|
|
|
#' @rdname ttm
|
|
|
|
#' @export
|
|
|
|
`%x_4%` <- function(T, M) ttm(T, M, 4L)
|