R, pair-wise product of unknown number of vectors/matrices

46 Views Asked by At

I want to make pair-wise products of variable numbers of matrices/vectors in base R. I only have this ugly solution (ugly is <<-) but intuitively think a nicer - maybe recursive - way exists, or perhaps even a function. I need a pair-wise version of prod.

f1 <- function(...) {
  input <- list(...)
  output <- input[[1]]
  sapply(2:length(input), function(m) output <<- output*input[[m]])
  return(output)
}

m1 <- matrix(1:6, ncol = 2)
m2 <- matrix(6:1, ncol = 2)
m3 <- 1/matrix(6:1, ncol = 2)

all(f1(m1,m2,m3) == m1*m2*m3) #[1] TRUE
1

There are 1 best solutions below

0
On BEST ANSWER

Use Reduce :

f1 <- function(...) {
  Reduce(`*`, list(...))
}

all(f1(m1,m2,m3) == m1*m2*m3)
#[1] TRUE